sparse_bcoo
Sparse BCOO backend for Qarray.
Implements the JAX experimental BCOO sparse format as a Qarray storage backend.
SparseBCOOImpl
Bases: QarrayImpl
Sparse implementation using JAX experimental BCOO sparse arrays.
Attributes:
| Name | Type | Description |
|---|---|---|
_data |
BCOO
|
The underlying |
Source code in jaxquantum/core/sparse_bcoo.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | |
abs()
Element-wise absolute value.
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
233 234 235 236 237 238 239 | |
add(other)
Element-wise addition self + other, coercing types as needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other
|
QarrayImpl
|
Right-hand operand. |
required |
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
can_handle_data(arr)
classmethod
Return True when arr is a sparse.BCOO array.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
arr
|
Raw array. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if arr is a |
Source code in jaxquantum/core/sparse_bcoo.py
254 255 256 257 258 259 260 261 262 263 264 | |
conj()
Element-wise complex conjugate.
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
220 221 222 223 224 225 226 | |
dag()
Conjugate transpose without densifying.
Transposes the last two dimensions of the BCOO array and conjugates the stored values.
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
dag_data(arr)
classmethod
Conjugate transpose for BCOO sparse arrays without densifying.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
arr
|
BCOO
|
A |
required |
Returns:
| Type | Description |
|---|---|
BCOO
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | |
dtype()
Data type of the underlying BCOO array.
Returns:
| Type | Description |
|---|---|
|
The dtype of |
Source code in jaxquantum/core/sparse_bcoo.py
173 174 175 176 177 178 179 | |
frobenius_norm()
Compute the Frobenius norm directly from stored values.
Returns:
| Type | Description |
|---|---|
float
|
The Frobenius norm as a scalar. |
Source code in jaxquantum/core/sparse_bcoo.py
181 182 183 184 185 186 187 | |
from_data(data)
classmethod
Wrap data in a new SparseBCOOImpl, converting to BCOO if needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
A |
required |
Returns:
| Type | Description |
|---|---|
'SparseBCOOImpl'
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
31 32 33 34 35 36 37 38 39 40 41 | |
get_data()
Return the underlying BCOO sparse array.
Source code in jaxquantum/core/sparse_bcoo.py
43 44 45 | |
imag()
Element-wise imaginary part.
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
207 208 209 210 211 212 213 | |
keep_only_diag()
Zero out off-diagonal stored entries without densifying.
Returns:
| Type | Description |
|---|---|
'SparseBCOOImpl'
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
311 312 313 314 315 316 317 318 319 320 321 | |
kron(other)
Kronecker product using sparsify(jnp.kron) — stays sparse.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other
|
'QarrayImpl'
|
Right-hand operand. |
required |
Returns:
| Type | Description |
|---|---|
'QarrayImpl'
|
A |
'QarrayImpl'
|
operands are sparse; a |
Source code in jaxquantum/core/sparse_bcoo.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | |
l2_norm_batched(bdims)
Compute the L2 norm per batch element without densifying.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bdims
|
tuple
|
Tuple of batch dimension sizes. |
required |
Returns:
| Type | Description |
|---|---|
Array
|
Scalar or array of L2 norms. |
Source code in jaxquantum/core/sparse_bcoo.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | |
matmul(other)
Matrix multiply self @ other.
When other is a DenseImpl, JAX's native BCOO @ dense path is
used (no self-densification). When other is also a
SparseBCOOImpl, a sparse @ sparse product is performed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other
|
QarrayImpl
|
Right-hand operand. |
required |
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
QarrayImpl
|
sparse) containing the matrix product. |
Source code in jaxquantum/core/sparse_bcoo.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | |
mul(scalar)
Scalar multiplication.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scalar
|
Scalar value. |
required |
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
102 103 104 105 106 107 108 109 110 111 | |
real()
Element-wise real part.
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
194 195 196 197 198 199 200 | |
shape()
Shape of the underlying BCOO array.
Returns:
| Type | Description |
|---|---|
tuple
|
Tuple of dimension sizes. |
Source code in jaxquantum/core/sparse_bcoo.py
165 166 167 168 169 170 171 | |
sub(other)
Element-wise subtraction self - other, coercing types as needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other
|
QarrayImpl
|
Right-hand operand. |
required |
Returns:
| Type | Description |
|---|---|
QarrayImpl
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |
tidy_up(atol)
Zero out stored values whose real or imaginary magnitude is below atol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
atol
|
Absolute tolerance threshold. |
required |
Returns:
| Type | Description |
|---|---|
'SparseBCOOImpl'
|
A new |
Source code in jaxquantum/core/sparse_bcoo.py
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | |
to_dense()
Convert to a DenseImpl via todense().
Returns:
| Type | Description |
|---|---|
'DenseImpl'
|
A |
Source code in jaxquantum/core/sparse_bcoo.py
135 136 137 138 139 140 141 | |
to_sparse_bcoo()
Return self (already sparse BCOO).
Returns:
| Type | Description |
|---|---|
'SparseBCOOImpl'
|
This |
Source code in jaxquantum/core/sparse_bcoo.py
157 158 159 160 161 162 163 | |
trace()
Compute the trace of the last two matrix dimensions without densifying.
Returns:
| Type | Description |
|---|---|
Array
|
Trace value(s). |
Source code in jaxquantum/core/sparse_bcoo.py
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |