matfree.stochtrace
matfree.stochtrace
Stochastic estimation of traces, diagonals, and more.
matfree.stochtrace.estimator_leave_one_out(integrand: Callable, /, sampler: Callable) -> Callable
Construct a leave-one-out stochastic estimator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
integrand
|
Callable
|
An integrand that accepts |
required |
sampler
|
Callable
|
The sample function, e.g. the return-value of sampler_normal or sampler_signs. |
required |
Returns:
| Type | Description |
|---|---|
estimate
|
A function |
Source code in matfree/stochtrace.py
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 | |
matfree.stochtrace.estimator_leave_one_out_mean_and_sem(integrand: Callable, /, sampler: Callable) -> Callable
Construct a LOO estimator that returns mean and standard error.
Like estimator_leave_one_out,
but returns (mean, sem) where sem = std(loo_estimates) / sqrt(num_samples).
The LOO integrand produces one estimate per leave-one-out, so their
standard deviation is a natural uncertainty measure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
integrand
|
Callable
|
Any integrand compatible with estimator_leave_one_out. |
required |
sampler
|
Callable
|
The sample function. |
required |
Returns:
| Type | Description |
|---|---|
estimate
|
A function that returns |
Source code in matfree/stochtrace.py
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 | |
matfree.stochtrace.estimator_monte_carlo(integrand: Callable, /, sampler: Callable) -> Callable
Construct a stochastic trace-/diagonal-estimator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
integrand
|
Callable
|
An integrand function with signature |
required |
sampler
|
Callable
|
The sample function. See below for recommendations. |
required |
Returns:
| Type | Description |
|---|---|
estimate
|
A function that maps a random key to an estimate. This function can be compiled, vectorised, differentiated, or looped over as the user desires. |
Notes
The statistical efficiency of the estimator for a given sampler depends on properties
of the operator, but we can provide some general advice. For an n-dimensional operator (see references):
- n > O(100), use sampler_signs.
- n < O(100), use sampler_signs if the operator is known to be diagonal-dominant or sampler_sphere otherwise.
- If the operator is complex-valued, pass a complex dtype to the sampler to approximately double the efficiency.
References
- Epperly, E. (2023). Stochastic trace estimation.
- Epperly, E. (2024). Don't use Gaussians in stochastic trace estimation.
Source code in matfree/stochtrace.py
7 8 9 10 11 12 13 14 15 16 17 18 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 | |
matfree.stochtrace.estimator_monte_carlo_mean_and_sem(integrand: Callable, /, sampler: Callable) -> Callable
Construct a stochastic estimator that returns mean and standard error.
Like estimator_monte_carlo,
but returns (mean, sem) where sem = std(samples) / sqrt(num_samples)
is the standard error of the mean -- the direct uncertainty on the estimate.
The number of samples is already encoded in the sampler,
so the caller does not need to track it separately.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
integrand
|
Callable
|
Any integrand compatible with estimator_monte_carlo. |
required |
sampler
|
Callable
|
The sample function. See estimator_monte_carlo for recommendations. |
required |
Returns:
| Type | Description |
|---|---|
estimate
|
A function that returns |
Source code in matfree/stochtrace.py
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 | |
matfree.stochtrace.leave_one_out_xnystrace(*, nystrom: Callable[[Callable, Array], tuple[Array, Array, Array]] | None = None, apply_resphering: bool = True, qr_r: Callable[[Array], Array] | None = None) -> Callable
Construct an integrand for estimating the trace of a positive semi-definite operator using the XNysTrace algorithm (Epperly et al. 2024).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nystrom
|
Callable[[Callable, Array], tuple[Array, Array, Array]] | None
|
A callable with signature |
None
|
apply_resphering
|
bool
|
If |
True
|
qr_r
|
Callable[[Array], Array] | None
|
A callable that computes the R factor of a QR decomposition, used if |
None
|
Returns:
| Type | Description |
|---|---|
integrand
|
An integrand function compatible with |
References
- Epperly EN, Tropp JA, Webber RJ (2024). XTrace: Making the most of every sample in stochastic trace estimation. SIAM J Matrix Anal A. 45.1: 1-23. doi: 10.1137/23M1548323 arXiv: 2301.07825
- Epperly EN (2025). Make the most of what you have: Resource-efficient randomized algorithms for matrix computations. PhD Thesis. arXiv: 2512.15929
Source code in matfree/stochtrace.py
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 | |
matfree.stochtrace.leave_one_out_xtrace(*, apply_resphering: bool = True) -> Callable
Construct an integrand for estimating the trace using the XTrace algorithm (Epperly et al. 2024).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
apply_resphering
|
bool
|
If |
True
|
Returns:
| Type | Description |
|---|---|
integrand
|
An integrand function compatible with |
Notes
The number of samples must be less than or equal to the dimension of the operator.
Additionally, the algorithm assumes that the samples are unique. For low-dimensional
operators, samples generated from sampler_signs may violate this assumption, and
it is recommended to use a different sampler instead.
References
- Epperly EN, Tropp JA, Webber RJ (2024). XTrace: Making the most of every sample in stochastic trace estimation. SIAM J Matrix Anal A. 45.1: 1-23. doi: 10.1137/23M1548323 arXiv: 2301.07825
- Epperly EN (2025). Make the most of what you have: Resource-efficient randomized algorithms for matrix computations. PhD Thesis. arXiv: 2512.15929
Source code in matfree/stochtrace.py
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 | |
matfree.stochtrace.monte_carlo_diagonal()
Construct the integrand for estimating the diagonal.
Use with estimator_monte_carlo.
The result will be an Array or PyTree of Arrays with the same tree-structure as
matvec(*args_like) where *args_like is an argument of the sampler.
Source code in matfree/stochtrace.py
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 | |
matfree.stochtrace.monte_carlo_frobeniusnorm_squared()
Construct the integrand for estimating the squared Frobenius norm.
Use with estimator_monte_carlo.
Source code in matfree/stochtrace.py
594 595 596 597 598 599 600 601 602 603 604 605 | |
matfree.stochtrace.monte_carlo_trace()
Construct the integrand for estimating the trace.
Use with estimator_monte_carlo.
Source code in matfree/stochtrace.py
562 563 564 565 566 567 568 569 570 571 572 573 574 | |
matfree.stochtrace.monte_carlo_trace_and_diagonal()
Construct the integrand for estimating the trace and diagonal jointly.
Use with estimator_monte_carlo.
Source code in matfree/stochtrace.py
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 | |
matfree.stochtrace.nystrom_eigh(eigenvalues_rtol: float | None = None, leverage_rtol: float | None = None, symmetrize_input: bool = True)
Construct a Nystrom approximation of an operator using a Hermitian eigendecomposition.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
eigenvalues_rtol
|
float | None
|
A relative tolerance used to determine which eigenvalues are close enough to 0. |
None
|
leverage_rtol
|
float | None
|
A relative tolerance used in computing the leverage scores to determine which test vectors are essential. |
None
|
symmetrize_input
|
bool
|
If |
True
|
Returns:
| Type | Description |
|---|---|
nystrom
|
A function that computes the Nystrom approximation of an operator using a Hermitian eigendecomposition.
The function has the signature |
Source code in matfree/stochtrace.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 | |
matfree.stochtrace.nystrom_shifted_cholesky(shift: float | None = None, rtol: float | None = None, symmetrize_input: bool = True)
Construct a Nystrom approximation of a shifted operator using a Cholesky decomposition.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
shift
|
float | None
|
A small positive shift to add to the operator to ensure the resulting operator
is positive definite for Cholesky decomposition.
If not provided, the |
None
|
rtol
|
float | None
|
A relative tolerance used in computing the shift. |
None
|
symmetrize_input
|
bool
|
If |
True
|
Returns:
| Type | Description |
|---|---|
nystrom
|
A function that computes the Nystrom approximation of a shifted operator using a Cholesky decomposition.
The function has the signature |
Source code in matfree/stochtrace.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | |
matfree.stochtrace.sampler_normal(*args_like, num)
Construct a function that samples from a standard-normal distribution.
Source code in matfree/stochtrace.py
618 619 620 | |
matfree.stochtrace.sampler_signs(*args_like, num)
Construct a function that samples signs uniformly.
For real dtypes, this samples from a Rademacher distribution (uniformly over {-1, 1}). For complex dtypes, this samples from a Steinhaus distribution on the complex unit circle.
Source code in matfree/stochtrace.py
623 624 625 626 627 628 | |
matfree.stochtrace.sampler_sphere(*args_like, num)
Construct a function that samples from a unit sphere scaled to have identity covariance.
Source code in matfree/stochtrace.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 | |