benchmatrix¶
benchmatrix ¶
Public pytest-benchmark matrix and JSON results API.
BenchmarkLifecycleHook
module-attribute
¶
BenchmarkLifecycleHook: TypeAlias = Callable[
[BenchmarkHookContext], None
]
Synchronous setup or cleanup hook for one benchmark invocation.
BenchmarkResultValidator
module-attribute
¶
BenchmarkResultValidator: TypeAlias = Callable[
[BenchmarkHookContext, object], None
]
Synchronous correctness hook for one benchmark invocation result.
TargetFunction
module-attribute
¶
TargetFunction: TypeAlias = Callable[..., object]
Synchronous callable measured by pytest-benchmark through benchmatrix.
Target functions must perform the work being measured before returning. Async functions are rejected. Lazy return values are not forced by the harness.
BenchmarkPairedRunGroup
dataclass
¶
Manifest-backed paired AB/BA benchmark collection.
Complete pairs are atomic adjacent block attempts: an orphan success from
a block whose other command failed is retained in records and runs
but excluded from complete_pairs and statistical inference.
Source code in src/benchmatrix/bench_collection.py
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 | |
successful_count
property
¶
successful_count: int
Return successful commands, including orphan successes.
complete_pairs
property
¶
complete_pairs: tuple[BenchmarkRunPair, ...]
Return complete atomic blocks in deterministic target-pair order.
baseline_runs
property
¶
baseline_runs: tuple[BenchmarkRun, ...]
Return baseline members of complete pairs in pair order.
candidate_runs
property
¶
candidate_runs: tuple[BenchmarkRun, ...]
Return candidate members of complete pairs in pair order.
complete_pair_count
property
¶
complete_pair_count: int
Return the number of complete atomic collection blocks.
orphan_success_count
property
¶
orphan_success_count: int
Return successes excluded because their block is incomplete.
is_complete
property
¶
is_complete: bool
Return whether every requested target pair has a complete block.
order_supercycle_length
property
¶
order_supercycle_length: int | None
Return the joint AB/BA-by-row cycle, once the matrix is known.
is_jointly_balanced
property
¶
is_jointly_balanced: bool
Return whether the fixed target contains whole joint supercycles.
remaining_pair_count
property
¶
remaining_pair_count: int
Return the number of target pairs still lacking a complete block.
incomplete_pair_indexes
property
¶
incomplete_pair_indexes: tuple[int, ...]
Return target-pair indexes without a complete atomic block.
__post_init__ ¶
__post_init__() -> None
Normalize containers and validate paired collection invariants.
Source code in src/benchmatrix/bench_collection.py
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 | |
compare ¶
compare(
*,
compatibility_policy: RunCompatibilityPolicy
| None = None,
regression_policy: RegressionPolicy | None = None,
evidence_policy: EvidencePolicy | None = None,
inference_policy: InferencePolicy | None = None,
precision_policy: PrecisionPolicy | None = None,
) -> BenchmarkRunComparison
Compare members after every requested atomic block is complete.
Raises:
| Type | Description |
|---|---|
BenchmarkCollectionError
|
If the fixed paired design is incomplete. |
Source code in src/benchmatrix/bench_collection.py
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 | |
BenchmarkPairedRunRecord
dataclass
¶
One command attempt within a scheduled paired collection block.
pair_index identifies the target pair. block_attempt identifies an
adjacent two-command attempt at that pair; a block contributes inference
evidence only when both variants succeed in the same block attempt.
Attributes:
| Name | Type | Description |
|---|---|---|
index |
int
|
One-based command-attempt index across the collection. |
pair_index |
int
|
One-based target-pair index. |
block_attempt |
int
|
One-based atomic-block attempt for that target pair. |
variant |
PairedVariant
|
Baseline or candidate member. |
pair_order |
PairedOrder
|
Scheduled AB or BA orientation. |
order_position |
int
|
One for the first command in the block, otherwise two. |
cell_order_index |
int
|
Balanced cell-order row shared by the pair. |
status |
CollectionRunStatus
|
Whether this command produced accepted benchmark evidence. |
path |
Path
|
Benchmark JSON path for the command attempt. |
returncode |
int | None
|
Child-process return code, when the command started. |
started_at |
str
|
UTC ISO 8601 timestamp for the command attempt. |
duration_seconds |
float
|
Child command and validation duration. |
error |
str | None
|
Failure reason for an unsuccessful command attempt. |
warnings |
tuple[str, ...]
|
Non-blocking environment diagnostics. |
commit |
str | None
|
Source commit reported by pytest-benchmark, when present. |
environment_fingerprint |
str | None
|
SHA-256 environment fingerprint, when valid. |
Source code in src/benchmatrix/bench_collection.py
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | |
__post_init__ ¶
__post_init__() -> None
Normalize and validate one paired command record.
Source code in src/benchmatrix/bench_collection.py
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | |
BenchmarkPairSchedule
dataclass
¶
One deterministic baseline/candidate collection block.
Attributes:
| Name | Type | Description |
|---|---|---|
pair_index |
int
|
One-based target-pair index. |
pair_order |
PairedOrder
|
|
cell_order_index |
int
|
One-based balanced matrix-order row used by both variants in the block. |
Source code in src/benchmatrix/bench_collection.py
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 | |
variants
property
¶
variants: tuple[PairedVariant, PairedVariant]
Return variants in their scheduled execution order.
__post_init__ ¶
__post_init__() -> None
Validate a scheduled pair.
Source code in src/benchmatrix/bench_collection.py
182 183 184 185 186 187 188 189 190 191 192 193 | |
BenchmarkRunGroup
dataclass
¶
A manifest-backed collection of repeated benchmark attempts.
Only successful records appear in runs and can contribute evidence.
Failed attempts remain available in records for lifecycle diagnostics.
Attributes:
| Name | Type | Description |
|---|---|---|
runs |
tuple[BenchmarkRun, ...]
|
Successfully parsed benchmark runs in attempt order. |
records |
tuple[BenchmarkRunRecord, ...]
|
All attempted collection records. |
command |
tuple[str, ...]
|
Original pytest command before output-path injection. |
created_at |
str
|
UTC ISO 8601 collection timestamp. |
cwd |
Path
|
Working directory inherited by the child commands. |
commit |
str | None
|
Commit reported by the first successful run, when present. |
environment_fingerprint |
str | None
|
Environment fingerprint from the first successful run. |
expected_cells |
tuple[BenchmarkCell, ...]
|
Matrix cells established by the first successful run. |
requested_runs |
int
|
Number of successful runs requested. |
manifest_path |
Path
|
Source manifest path. |
Source code in src/benchmatrix/bench_collection.py
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 460 461 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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 | |
is_complete
property
¶
is_complete: bool
Return whether the requested successful-run target was reached.
pending_count
property
¶
pending_count: int
Return initial collection slots that have not been attempted.
retry_count
property
¶
retry_count: int
Return attempts appended after the initial collection slots.
remaining_count
property
¶
remaining_count: int
Return additional successful runs needed for completeness.
failed_records
property
¶
failed_records: tuple[BenchmarkRunRecord, ...]
Return failed attempts in collection order.
__post_init__ ¶
__post_init__() -> None
Normalize containers and validate collection invariants.
Source code in src/benchmatrix/bench_collection.py
458 459 460 461 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 | |
compare_to ¶
compare_to(
candidate: BenchmarkRunGroup,
*,
compatibility_policy: RunCompatibilityPolicy
| None = None,
regression_policy: RegressionPolicy | None = None,
evidence_policy: EvidencePolicy | None = None,
inference_policy: InferencePolicy | None = None,
precision_policy: PrecisionPolicy | None = None,
) -> BenchmarkRunComparison
Compare this repeated baseline collection with a candidate.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
candidate
|
BenchmarkRunGroup
|
Repeated candidate collection. |
required |
compatibility_policy
|
RunCompatibilityPolicy | None
|
Environment checks to apply. |
None
|
regression_policy
|
RegressionPolicy | None
|
Thresholds used to classify cell changes. |
None
|
evidence_policy
|
EvidencePolicy | None
|
Minimum repeated-run evidence to require. |
None
|
inference_policy
|
InferencePolicy | None
|
Statistical inference and multiplicity controls. |
None
|
precision_policy
|
PrecisionPolicy | None
|
Optional precision-planning policy. Independent groups require its planning mode to remain disabled. |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkRunComparison
|
A matrix-aware repeated-run comparison. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If either collection has no successful runs. |
Source code in src/benchmatrix/bench_collection.py
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 | |
BenchmarkRunPair
dataclass
¶
One complete atomic baseline/candidate collection block.
Attributes:
| Name | Type | Description |
|---|---|---|
pair_index |
int
|
One-based target-pair index. |
block_attempt |
int
|
Successful atomic-block attempt for the pair. |
pair_order |
PairedOrder
|
AB or BA execution orientation. |
cell_order |
tuple[BenchmarkCell, ...]
|
Balanced matrix order used by both variants. |
baseline |
BenchmarkRun
|
Baseline benchmark run. |
candidate |
BenchmarkRun
|
Candidate benchmark run. |
baseline_record |
BenchmarkPairedRunRecord
|
Manifest record for |
candidate_record |
BenchmarkPairedRunRecord
|
Manifest record for |
Source code in src/benchmatrix/bench_collection.py
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | |
__post_init__ ¶
__post_init__() -> None
Validate the matched-block contract.
Source code in src/benchmatrix/bench_collection.py
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | |
BenchmarkRunRecord
dataclass
¶
One attempted run recorded in a collection manifest.
Attributes:
| Name | Type | Description |
|---|---|---|
index |
int
|
One-based attempt number. |
status |
CollectionRunStatus
|
Whether the command produced accepted benchmark evidence. |
path |
Path
|
Benchmark JSON path for the attempt. |
returncode |
int | None
|
Child-process return code, when the command started. |
started_at |
str
|
UTC ISO 8601 timestamp for the attempt. |
duration_seconds |
float
|
Child command and validation duration. |
error |
str | None
|
Failure reason for an unsuccessful attempt. |
warnings |
tuple[str, ...]
|
Non-blocking environment diagnostics. |
commit |
str | None
|
Source commit reported by pytest-benchmark, when present. |
environment_fingerprint |
str | None
|
SHA-256 fingerprint of environment metadata, when a valid run was produced. |
Source code in src/benchmatrix/bench_collection.py
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 | |
__post_init__ ¶
__post_init__() -> None
Normalize and validate an attempted-run record.
Source code in src/benchmatrix/bench_collection.py
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 | |
BenchmarkComparison
dataclass
¶
Comparison for one implementation, case, and metric matrix cell.
percent_change is the conventional candidate change from baseline,
while improvement_percent is direction-aware and therefore positive
when the candidate is better.
Source code in src/benchmatrix/bench_compare.py
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 538 539 | |
BenchmarkEvidence
dataclass
¶
Trust diagnostics for one side of a matrix-cell comparison.
Attributes:
| Name | Type | Description |
|---|---|---|
provided_run_count |
int
|
Files supplied for this side. |
observed_run_count |
int
|
Files containing this matrix cell. |
rounds |
tuple[int | None, ...]
|
Positive pytest-benchmark round counts aligned to the files. |
iterations |
tuple[int | None, ...]
|
Positive iteration counts aligned to the files. |
sample_counts |
tuple[int, ...]
|
Raw timing sample counts aligned to the files. |
sample_count |
int
|
Total pooled raw timing samples. |
iqr |
float | None
|
Interquartile range of pooled timing samples in seconds. Retained as a descriptive compatibility field; evidence gates use the corresponding per-run diagnostics. |
coefficient_of_variation |
float | None
|
Pooled timing-sample population standard deviation divided by the absolute mean. |
outlier_count |
int | None
|
Samples outside the pooled 1.5-IQR Tukey fences. |
outlier_fraction |
float | None
|
Outlier count divided by total sample count. |
adequate |
bool
|
Whether the configured evidence policy was satisfied. |
issues |
tuple[str, ...]
|
Human-readable reasons evidence is inadequate. |
run_iqrs |
tuple[float | None, ...]
|
Per-run timing-sample interquartile ranges. |
run_coefficients_of_variation |
tuple[float | None, ...]
|
Per-run coefficients of variation. |
run_outlier_counts |
tuple[int | None, ...]
|
Per-run Tukey-outlier counts. |
run_outlier_fractions |
tuple[float | None, ...]
|
Per-run Tukey-outlier fractions. |
Source code in src/benchmatrix/bench_compare.py
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 | |
BenchmarkInference
dataclass
¶
Statistical inference for one benchmark matrix cell.
Source code in src/benchmatrix/bench_compare.py
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | |
__post_init__ ¶
__post_init__() -> None
Validate and normalize an inference result.
Source code in src/benchmatrix/bench_compare.py
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | |
BenchmarkRunComparison
dataclass
¶
Matrix-aware comparison between a baseline and candidate run.
Source code in src/benchmatrix/bench_compare.py
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 | |
matched
property
¶
matched: tuple[BenchmarkComparison, ...]
Return cells that were compared successfully.
missing
property
¶
missing: tuple[BenchmarkComparison, ...]
Return cells absent from either input run.
incompatible
property
¶
incompatible: tuple[BenchmarkComparison, ...]
Return cells whose measurement context cannot be compared.
improved
property
¶
improved: tuple[BenchmarkComparison, ...]
Return comparable cells that exceeded their improvement threshold.
unchanged
property
¶
unchanged: tuple[BenchmarkComparison, ...]
Return comparable cells whose changes stayed within threshold.
regressed
property
¶
regressed: tuple[BenchmarkComparison, ...]
Return comparable cells that exceeded their regression threshold.
inconclusive
property
¶
inconclusive: tuple[BenchmarkComparison, ...]
Return matched cells whose evidence cannot support a decision.
not_comparable
property
¶
not_comparable: tuple[BenchmarkComparison, ...]
Return cells without a trustworthy regression classification.
is_complete
property
¶
is_complete: bool
Return whether every matrix cell was compared successfully.
is_comparable
property
¶
is_comparable: bool
Return whether environment and every matrix cell are comparable.
has_regressions
property
¶
has_regressions: bool
Return whether any comparable matrix cell regressed.
EvidencePolicy
dataclass
¶
Minimum evidence required for repeated-run classifications.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
minimum_runs
|
int
|
Minimum files on each side containing a matrix cell. |
5
|
minimum_samples_per_run
|
int
|
Minimum raw timing samples required from each observed file. |
5
|
minimum_rounds_per_run
|
int
|
Minimum pytest-benchmark rounds required from each observed file. |
5
|
require_rounds
|
bool
|
Whether every row must report a positive round count. |
True
|
require_iterations
|
bool
|
Whether every row must report a positive iteration count. |
True
|
require_raw_samples_for_inference
|
bool
|
Whether every observed row must retain raw per-round durations. |
True
|
minimum_tail_samples_per_run
|
int
|
Minimum round-duration observations required from each tail-latency row. |
100
|
require_tail_iterations_one
|
bool
|
Whether tail-latency rows must represent individual calls rather than averages of multiple iterations. |
True
|
maximum_cv
|
float | None
|
Optional maximum within-run coefficient of variation. |
None
|
maximum_outlier_fraction
|
float | None
|
Optional maximum within-run Tukey-outlier fraction. |
None
|
Source code in src/benchmatrix/bench_compare.py
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 | |
__post_init__ ¶
__post_init__() -> None
Validate evidence thresholds.
Source code in src/benchmatrix/bench_compare.py
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 | |
InferencePolicy
dataclass
¶
Policy controlling run-level statistical inference.
The default method bootstraps complete process-run statistics, applies a
BCa interval, and uses a Bonferroni-adjusted simultaneous confidence level
across the reported matrix. legacy_consistency preserves the version 1
observed-pairwise-range decision rule and is intentionally non-inferential.
Source code in src/benchmatrix/bench_compare.py
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 | |
__post_init__ ¶
__post_init__() -> None
Validate inference controls.
Source code in src/benchmatrix/bench_compare.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
PrecisionPolicy
dataclass
¶
Optional fixed-design precision target for paired pilot comparisons.
target_half_width_percent=None disables planning. When enabled, each
paired matrix cell estimates the pair count for a fresh future collection;
the pilot comparison and its pass/fail decision are never changed by the
plan.
Source code in src/benchmatrix/bench_compare.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 310 311 | |
__post_init__ ¶
__post_init__() -> None
Validate and normalize the optional percentage target.
Source code in src/benchmatrix/bench_compare.py
296 297 298 299 300 301 302 303 304 305 306 | |
RegressionPolicy
dataclass
¶
Threshold policy for classifying benchmark changes.
Thresholds are percentage points and must be finite and non-negative. More specific mappings override broader ones in this order: exact matrix cell, case, implementation, metric, then the default threshold.
Source code in src/benchmatrix/bench_compare.py
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 460 461 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 | |
__post_init__ ¶
__post_init__() -> None
Validate thresholds and freeze policy mappings.
Source code in src/benchmatrix/bench_compare.py
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 460 461 462 463 464 465 466 467 468 469 470 | |
threshold_for ¶
threshold_for(
implementation_name: str,
case_name: str,
metric_name: MetricName,
) -> float
Return the effective threshold for one matrix cell.
Source code in src/benchmatrix/bench_compare.py
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | |
threshold_scope_for ¶
threshold_scope_for(
implementation_name: str,
case_name: str,
metric_name: MetricName,
) -> RegressionThresholdScope
Return the selector scope that supplies one cell's threshold.
Source code in src/benchmatrix/bench_compare.py
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 | |
RunCompatibilityFinding
dataclass
¶
One material difference between two run environments.
Source code in src/benchmatrix/bench_compare.py
81 82 83 84 85 86 87 88 89 90 91 | |
RunCompatibilityPolicy
dataclass
¶
Policy controlling run-environment compatibility checks.
permissive keeps lower-risk differences as warnings, strict
promotes every difference or missing environment record to a blocker, and
off disables run-level compatibility checks.
Source code in src/benchmatrix/bench_compare.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | |
__post_init__ ¶
__post_init__() -> None
Validate the compatibility mode.
Source code in src/benchmatrix/bench_compare.py
75 76 77 78 | |
RunCompatibilityReport
dataclass
¶
Compatibility findings for the baseline and candidate environments.
Source code in src/benchmatrix/bench_compare.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | |
blocking
property
¶
blocking: tuple[RunCompatibilityFinding, ...]
Return differences that prevent a trustworthy comparison.
warnings
property
¶
warnings: tuple[RunCompatibilityFinding, ...]
Return non-blocking environment differences.
is_compatible
property
¶
is_compatible: bool
Return whether no blocking environment differences were found.
BenchmarkCase
dataclass
¶
Named input case and metadata for a pytest-benchmark matrix.
Warning
If fresh_inputs is false, pytest-benchmark may call the target
function repeatedly with the same argument objects. That is appropriate
only when the target function treats its inputs as immutable or when
reuse reflects the workload you want to measure.
If fresh_inputs is true, this harness uses pytest-benchmark
pedantic setup so input construction is setup work rather than timed
target-function work. That avoids accidentally timing input creation,
but it also means the benchmark is not an end-to-end measurement that
includes input construction. To benchmark construction cost, put that
construction inside the target function itself.
When fresh_inputs is true, BenchmarkConfig.pedantic_iterations
is ignored because pytest-benchmark setup mode is used. The harness
emits a runtime warning when a non-default value is ignored.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Human-readable case name used in parameter IDs and metadata. |
required |
make_args
|
Callable[[], tuple[object, ...]]
|
Factory returning positional arguments for the target function. |
_empty_args
|
make_kwargs
|
Callable[[], dict[str, object]]
|
Factory returning keyword arguments for the target function. |
_empty_kwargs
|
work_units
|
float | Callable[[], float] | None
|
Positive logical amount of work performed by one target call. This can represent items, rows, bytes, tokens, records, events, or any other domain-specific unit. |
None
|
work_unit_name
|
str
|
Name of the logical work unit, such as |
_DEFAULT_WORK_UNIT_NAME
|
fresh_inputs
|
bool
|
Whether each benchmark round needs newly created inputs. |
False
|
metadata
|
Mapping[str, object]
|
Additional strict-JSON-renderable metadata describing the
case. Reasonable scalar types such as paths, datetimes, enums, and
NumPy scalars are coerced; unsupported values raise
|
_empty_metadata()
|
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Human-readable case name used in parameter IDs and metadata. |
make_args |
Callable[[], tuple[object, ...]]
|
Factory returning positional arguments for the target function. |
make_kwargs |
Callable[[], dict[str, object]]
|
Factory returning keyword arguments for the target function. |
work_units |
float | Callable[[], float] | None
|
Positive logical amount of work performed by one target call. |
work_unit_name |
str
|
Name of the logical work unit. |
fresh_inputs |
bool
|
Whether each benchmark round needs newly created inputs. |
metadata |
Mapping[str, object]
|
Strict JSON-safe metadata describing the case. |
Source code in src/benchmatrix/bench_harness.py
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 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 | |
__post_init__ ¶
__post_init__() -> None
Validate benchmark case fields after initialization.
Source code in src/benchmatrix/bench_harness.py
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 | |
make_call ¶
make_call() -> tuple[tuple[object, ...], dict[str, object]]
Return positional and keyword arguments for one target invocation.
Returns:
| Type | Description |
|---|---|
tuple[tuple[object, ...], dict[str, object]]
|
A tuple containing positional arguments and keyword arguments. |
Source code in src/benchmatrix/bench_harness.py
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | |
work_unit_count ¶
work_unit_count() -> float | None
Return the logical work-unit count for throughput metrics.
Returns:
| Type | Description |
|---|---|
float | None
|
The logical work-unit count, or |
float | None
|
unit count. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the work-unit count is not positive or finite. |
Source code in src/benchmatrix/bench_harness.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | |
from_values
classmethod
¶
from_values(
name: str,
*args: object,
work_units: float | Callable[[], float] | None = None,
work_unit_name: str = _DEFAULT_WORK_UNIT_NAME,
fresh_inputs: bool = False,
copier: Callable[[object], object] | None = None,
metadata: Mapping[str, object] | None = None,
**kwargs: object,
) -> BenchmarkCase
Create a benchmark case from concrete argument values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Case name. |
required |
*args
|
object
|
Positional arguments for the target function. |
()
|
work_units
|
float | Callable[[], float] | None
|
Positive logical amount of work performed by one target call. |
None
|
work_unit_name
|
str
|
Name of the logical work unit, such as |
_DEFAULT_WORK_UNIT_NAME
|
fresh_inputs
|
bool
|
Whether target invocations need fresh inputs. When
true and |
False
|
copier
|
Callable[[object], object] | None
|
Optional copy function applied to each argument value. Use
|
None
|
metadata
|
Mapping[str, object] | None
|
Optional strict-JSON-renderable case metadata. |
None
|
**kwargs
|
object
|
Keyword arguments for the target function. |
{}
|
Returns:
| Type | Description |
|---|---|
BenchmarkCase
|
A configured benchmark case. |
Source code in src/benchmatrix/bench_harness.py
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 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 | |
BenchmarkConfig
dataclass
¶
Configuration passed from benchmatrix to pytest-benchmark.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pedantic_rounds
|
int
|
Number of pedantic benchmark rounds to request. |
_DEFAULT_PEDANTIC_ROUNDS
|
warmup_rounds
|
int
|
Number of pedantic warmup rounds to request. |
_DEFAULT_WARMUP_ROUNDS
|
pedantic_iterations
|
int
|
Number of function calls per pedantic round when
inputs are reused. This value is intentionally ignored when
|
_DEFAULT_PEDANTIC_ITERATIONS
|
stream_progress
|
bool
|
Whether benchmark helpers should print one progress line per benchmark invocation. |
True
|
before_benchmark
|
BenchmarkLifecycleHook | None
|
Optional synchronous hook called immediately before pytest-benchmark starts an invocation. |
None
|
validate_result
|
BenchmarkResultValidator | None
|
Optional synchronous correctness hook called with the result returned by pytest-benchmark. The hook should raise when the result is invalid. |
None
|
after_benchmark
|
BenchmarkLifecycleHook | None
|
Optional synchronous hook called after result validation, or during cleanup if benchmarking or validation raises. |
None
|
Attributes:
| Name | Type | Description |
|---|---|---|
pedantic_rounds |
int
|
Number of pedantic benchmark rounds to request. |
warmup_rounds |
int
|
Number of pedantic warmup rounds to request. |
pedantic_iterations |
int
|
Number of function calls per pedantic round when inputs are reused. |
stream_progress |
bool
|
Whether benchmark helpers should print one progress line per benchmark invocation. |
before_benchmark |
BenchmarkLifecycleHook | None
|
Optional untimed setup hook for a benchmark invocation. |
validate_result |
BenchmarkResultValidator | None
|
Optional untimed correctness hook for the returned target result. |
after_benchmark |
BenchmarkLifecycleHook | None
|
Optional untimed cleanup hook for a benchmark invocation. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If a timing control has the wrong type, progress output is not boolean, or a configured hook is not callable or is asynchronous. |
ValueError
|
If rounds or iterations are not positive, or if warmup rounds are negative. |
Warning
For tail_latency benchmarks, setting pedantic_iterations above
one means raw samples are per-round averages of multiple calls rather
than individual-call latency samples. The harness emits a runtime
warning for this configuration.
Source code in src/benchmatrix/bench_harness.py
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 | |
__post_init__ ¶
__post_init__() -> None
Validate benchmark configuration after initialization.
Source code in src/benchmatrix/bench_harness.py
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | |
BenchmarkFixture ¶
Bases: Protocol
pytest-benchmark fixture surface used by benchmatrix.
Attributes:
| Name | Type | Description |
|---|---|---|
extra_info |
MutableMapping[str, object]
|
Mutable metadata attached to pytest-benchmark output. |
Source code in src/benchmatrix/bench_harness.py
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 | |
__call__ ¶
__call__(
target: Callable[..., T],
*args: object,
**kwargs: object,
) -> T
Benchmark target with pytest-benchmark automatic calibration.
Source code in src/benchmatrix/bench_harness.py
127 128 129 | |
pedantic ¶
pedantic(
target: Callable[..., T],
*,
args: Sequence[object] | None = None,
kwargs: Mapping[str, object] | None = None,
setup: Callable[
[], tuple[Sequence[object], Mapping[str, object]]
]
| None = None,
teardown: Callable[..., object] | None = None,
rounds: int = _DEFAULT_PEDANTIC_ROUNDS,
warmup_rounds: int = _DEFAULT_WARMUP_ROUNDS,
iterations: int = _DEFAULT_PEDANTIC_ITERATIONS,
) -> T
Benchmark target with pytest-benchmark pedantic mode.
Source code in src/benchmatrix/bench_harness.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
BenchmarkHookContext
dataclass
¶
Identity and inputs available to benchmark lifecycle hooks.
Attributes:
| Name | Type | Description |
|---|---|---|
metric_name |
MetricName
|
Metric requested for this benchmark invocation. |
implementation_name |
str
|
Name of the implementation under test. |
case_name |
str
|
Matrix case name under test. |
function |
TargetFunction
|
Synchronous target function under test. |
case |
BenchmarkCase
|
Benchmark case definition used by the invocation. |
Source code in src/benchmatrix/bench_harness.py
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 | |
BenchmarkInvocationRecord
dataclass
¶
Lightweight record returned after one benchmark invocation.
This record is not a timing result. Timing results come from pytest-benchmark's report, saved runs, CSV output, or JSON output.
Attributes:
| Name | Type | Description |
|---|---|---|
metric_name |
MetricName
|
Metric requested for this benchmark invocation. |
implementation_name |
str
|
Name of the implementation under test. |
case_name |
str
|
Name of the input case under test. |
extra_info |
Mapping[str, object]
|
Strict JSON-safe metadata attached to pytest-benchmark output. Values are limited to JSON primitives, lists, and string-keyed mappings after metadata coercion. The metadata includes benchmatrix producer and schema-version markers. |
Source code in src/benchmatrix/bench_harness.py
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | |
BenchmarkPolicyConfig
dataclass
¶
Resolved benchmatrix policy configuration.
Attributes:
| Name | Type | Description |
|---|---|---|
compatibility |
RunCompatibilityPolicy
|
Run-environment compatibility policy. |
evidence |
EvidencePolicy
|
Repeated-run evidence policy. |
inference |
InferencePolicy
|
Run-level inference and multiplicity policy. |
precision |
PrecisionPolicy
|
Optional fixed-design precision-planning policy. |
regression |
RegressionPolicy
|
Regression threshold policy. |
source |
Path | None
|
Selected TOML file, or |
configured_fields |
frozenset[str]
|
Explicit |
Source code in src/benchmatrix/bench_policy.py
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 | |
__post_init__ ¶
__post_init__() -> None
Normalize the optional source path and configured field set.
Source code in src/benchmatrix/bench_policy.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | |
BenchmarkCollectionSnapshot
dataclass
¶
Portable collection provenance embedded in a comparison report.
Source code in src/benchmatrix/bench_report.py
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 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 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | |
pending_runs
property
¶
pending_runs: int
Return initial collection slots that were never attempted.
retry_attempts
property
¶
retry_attempts: int
Return attempts appended after the initial collection slots.
remaining_runs
property
¶
remaining_runs: int
Return additional successful runs needed for completeness.
__post_init__ ¶
__post_init__() -> None
Validate and normalize the portable collection snapshot.
Source code in src/benchmatrix/bench_report.py
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
from_group
classmethod
¶
from_group(
group: BenchmarkRunGroup,
) -> BenchmarkCollectionSnapshot
Create a portable snapshot from a loaded run group.
Source code in src/benchmatrix/bench_report.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 | |
to_dict ¶
to_dict() -> dict[str, JsonValue]
Return the stable JSON representation of this collection.
Source code in src/benchmatrix/bench_report.py
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | |
BenchmarkComparisonReport
dataclass
¶
One portable, versioned benchmark comparison result.
Source code in src/benchmatrix/bench_report.py
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 | |
improved
property
¶
improved: tuple[BenchmarkComparison, ...]
Return cells classified as improvements.
unchanged
property
¶
unchanged: tuple[BenchmarkComparison, ...]
Return cells classified as unchanged.
regressed
property
¶
regressed: tuple[BenchmarkComparison, ...]
Return cells classified as regressions.
inconclusive
property
¶
inconclusive: tuple[BenchmarkComparison, ...]
Return cells with inconclusive evidence.
not_comparable
property
¶
not_comparable: tuple[BenchmarkComparison, ...]
Return cells without a trustworthy comparison.
comparison_passed
property
¶
comparison_passed: bool
Return whether the benchmark comparison itself passed.
is_comparable
property
¶
is_comparable: bool
Return whether all report cells and environments are comparable.
__post_init__ ¶
__post_init__() -> None
Validate and normalize report containers.
Source code in src/benchmatrix/bench_report.py
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 | |
from_comparison
classmethod
¶
from_comparison(
comparison: BenchmarkRunComparison,
*,
baselines: Sequence[str | Path],
candidates: Sequence[str | Path],
policy_provenance: BenchmarkPolicyProvenance,
threshold_provenance: Sequence[
BenchmarkThresholdProvenance
],
baseline_collections: Sequence[BenchmarkRunGroup] = (),
candidate_collections: Sequence[BenchmarkRunGroup] = (),
paired_collections: Sequence[
BenchmarkPairedRunGroup
] = (),
) -> BenchmarkComparisonReport
Create a portable report from a live comparison result.
Source code in src/benchmatrix/bench_report.py
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 | |
to_dict ¶
to_dict() -> dict[str, JsonValue]
Return the complete stable comparison report document.
Source code in src/benchmatrix/bench_report.py
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 | |
BenchmarkPairedCollectionSnapshot
dataclass
¶
Portable paired AB/BA collection provenance embedded in a report.
Source code in src/benchmatrix/bench_report.py
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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | |
attempted_commands
property
¶
attempted_commands: int
Return the number of completed command attempts.
successful_commands
property
¶
successful_commands: int
Return the number of accepted command attempts.
complete_pair_count
property
¶
complete_pair_count: int
Return the number of target pairs with one complete atomic block.
complete_pair_records
property
¶
complete_pair_records: tuple[
tuple[
BenchmarkPairedRunRecord, BenchmarkPairedRunRecord
],
...,
]
Return baseline/candidate records for complete blocks in pair order.
baseline_sources
property
¶
baseline_sources: tuple[str, ...]
Return complete-block baseline paths in target-pair order.
candidate_sources
property
¶
candidate_sources: tuple[str, ...]
Return complete-block candidate paths in target-pair order.
orphan_success_count
property
¶
orphan_success_count: int
Return successful commands excluded from complete pairs.
__post_init__ ¶
__post_init__() -> None
Validate and normalize the portable paired snapshot.
Source code in src/benchmatrix/bench_report.py
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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 | |
from_group
classmethod
¶
from_group(
group: BenchmarkPairedRunGroup,
) -> BenchmarkPairedCollectionSnapshot
Create a portable snapshot from a loaded paired run group.
Source code in src/benchmatrix/bench_report.py
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 | |
to_dict ¶
to_dict() -> dict[str, JsonValue]
Return the stable JSON representation of this paired collection.
Source code in src/benchmatrix/bench_report.py
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | |
BenchmarkPolicyProvenance
dataclass
¶
Configuration provenance embedded in a comparison report.
Source code in src/benchmatrix/bench_report.py
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | |
__post_init__ ¶
__post_init__() -> None
Validate and normalize policy provenance.
Source code in src/benchmatrix/bench_report.py
324 325 326 327 328 329 330 331 332 333 334 335 336 337 | |
BenchmarkThresholdProvenance
dataclass
¶
Rule scope and origin supplying one reported cell threshold.
Source code in src/benchmatrix/bench_report.py
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
__post_init__ ¶
__post_init__() -> None
Validate threshold provenance.
Source code in src/benchmatrix/bench_report.py
348 349 350 351 352 353 354 355 | |
BenchmarkRun
dataclass
¶
One parsed pytest-benchmark run containing a benchmark matrix.
Attributes:
| Name | Type | Description |
|---|---|---|
rows |
tuple[ParsedBenchmarkRow, ...]
|
Benchmatrix rows in their source-file order. |
metadata |
Mapping[str, object]
|
Top-level pytest-benchmark metadata excluding |
source |
Path | None
|
Source JSON path, when the run was loaded from a file. |
Source code in src/benchmatrix/bench_results.py
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 | |
implementations
property
¶
implementations: tuple[str, ...]
Return sorted implementation names represented in this run.
metrics
property
¶
metrics: tuple[MetricName, ...]
Return sorted metric names represented in this run.
__post_init__ ¶
__post_init__() -> None
Normalize run containers and reject duplicate matrix cells.
Source code in src/benchmatrix/bench_results.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 | |
compare_to ¶
compare_to(
candidate: BenchmarkRun,
*,
compatibility_policy: RunCompatibilityPolicy
| None = None,
regression_policy: RegressionPolicy | None = None,
inference_policy: InferencePolicy | None = None,
) -> BenchmarkRunComparison
Compare this baseline run with a candidate run.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
candidate
|
BenchmarkRun
|
Run whose values should be compared with this baseline. |
required |
compatibility_policy
|
RunCompatibilityPolicy | None
|
Environment checks to apply. |
None
|
regression_policy
|
RegressionPolicy | None
|
Thresholds used to classify cell changes. |
None
|
inference_policy
|
InferencePolicy | None
|
Statistical inference and multiplicity controls. |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkRunComparison
|
A matrix-aware comparison containing matched, missing, and |
BenchmarkRunComparison
|
incompatible cells. |
Source code in src/benchmatrix/bench_results.py
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 | |
ParsedBenchmarkRow
dataclass
¶
One benchmatrix-tagged row parsed from pytest-benchmark JSON output.
Attributes:
| Name | Type | Description |
|---|---|---|
benchmark_name |
str
|
Name assigned by pytest-benchmark to this benchmark. |
metric_name |
MetricName
|
Benchmatrix metric name from |
implementation_name |
str
|
Implementation name from |
case_name |
str
|
Case name from |
stats |
Mapping[str, object]
|
Raw pytest-benchmark timing statistics. |
extra_info |
Mapping[str, object]
|
Custom metadata from |
derived |
Mapping[str, object]
|
Derived metric-specific statistics computed from JSON output. |
samples |
tuple[float, ...]
|
Raw per-round timing samples in seconds. |
Source code in src/benchmatrix/bench_results.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
PrecisionPlan
dataclass
¶
Fixed-design pair-count plan derived from pilot paired log ratios.
The planning estimand is the mean signed paired log ratio, a variance-based
proxy rather than the ratio-of-marginal-medians estimand used by formal BCa
inference. This is a precision calculation, not power analysis. Its
pair-count result assumes that pilot variability is representative and that
a fresh confirmatory collection uses the complete planned pair count fixed
before examining its results. additional_pairs is only the arithmetic
difference from the pilot size; it does not endorse reusing pilot outcomes.
Source code in src/benchmatrix/bench_statistics.py
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 | |
adequate
property
¶
adequate: bool
Return whether a complete fixed-design pair-count estimate exists.
__post_init__ ¶
__post_init__() -> None
Validate and normalize a precision plan.
Source code in src/benchmatrix/bench_statistics.py
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 | |
BenchmarkCollectionError ¶
Bases: BenchmatrixError, RuntimeError
Raised when a repeated-run collection cannot be created.
Source code in src/benchmatrix/exceptions.py
16 17 | |
BenchmarkJsonError ¶
Bases: BenchmatrixError, ValueError
Raised when pytest-benchmark JSON cannot be parsed as benchmatrix output.
Source code in src/benchmatrix/exceptions.py
12 13 | |
BenchmarkPolicyError ¶
Bases: BenchmatrixError, ValueError
Raised when benchmark policy configuration is invalid.
Source code in src/benchmatrix/exceptions.py
20 21 | |
BenchmatrixError ¶
Bases: Exception
Base class for benchmatrix matrix, metadata, and result errors.
Source code in src/benchmatrix/exceptions.py
4 5 | |
MetadataSerializationError ¶
Bases: BenchmatrixError, ValueError
Raised when benchmark metadata cannot be represented as strict JSON.
Source code in src/benchmatrix/exceptions.py
8 9 | |
balanced_cell_order ¶
balanced_cell_order(
cells: Sequence[tuple[str, str, MetricName]],
*,
order_index: int,
random_seed: int = 0,
) -> tuple[tuple[str, str, MetricName], ...]
Return one deterministic position- and carryover-balanced cell order.
Even-sized matrices repeat after n order indexes. Odd-sized matrices
larger than one repeat after 2n indexes because every cyclic row is
followed by a reversed cycle. A one-cell matrix has a one-row cycle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cells
|
Sequence[tuple[str, str, MetricName]]
|
Unique |
required |
order_index
|
int
|
One-based schedule row. |
required |
random_seed
|
int
|
Non-negative seed for the stable base-label permutation. |
0
|
Returns:
| Type | Description |
|---|---|
tuple[tuple[str, str, MetricName], ...]
|
The cells in the scheduled execution order. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If an index or seed is not an integer. |
ValueError
|
If an index, seed, or cell is invalid, or cells repeat. |
Source code in src/benchmatrix/_collection_design.py
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 | |
balanced_order_cycle_length ¶
balanced_order_cycle_length(cell_count: int) -> int
Return the number of rows in a complete balanced-order cycle.
Source code in src/benchmatrix/_collection_design.py
97 98 99 100 101 102 103 104 105 | |
balanced_order_supercycle_length ¶
balanced_order_supercycle_length(cell_count: int) -> int
Return the AB/BA-by-balanced-row joint-design cycle length.
Source code in src/benchmatrix/_collection_design.py
108 109 110 | |
collect_benchmark_runs ¶
collect_benchmark_runs(
command: Sequence[str],
output_dir: str | Path,
*,
run_count: int | None = None,
resume: bool = False,
retry_failed: bool = False,
) -> BenchmarkRunGroup
Execute or resume pytest runs and persist a run-group manifest.
--benchmark-json is injected once per attempt. Attempts run
sequentially and collection continues after failures so the manifest
preserves complete lifecycle diagnostics. Resuming fills initial attempts
that were never recorded. Retrying appends attempts until each currently
missing successful run has received one new attempt; prior failures are
never replaced.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
command
|
Sequence[str]
|
Pytest command and arguments without |
required |
output_dir
|
str | Path
|
New or empty directory for a new collection, or an existing collection directory when resuming. |
required |
run_count
|
int | None
|
Successful-run target. New collections default to five. When resuming, an omitted value preserves the manifest target and a supplied value must match it. |
None
|
resume
|
bool
|
Continue an existing manifest-backed collection. |
False
|
retry_failed
|
bool
|
After resuming unattempted slots, append one new attempt
for each successful run still needed. Requires |
False
|
Returns:
| Type | Description |
|---|---|
BenchmarkRunGroup
|
The completed collection, including successful runs and failed records. |
Raises:
| Type | Description |
|---|---|
BenchmarkCollectionError
|
If collection cannot be initialized or resumed, or the command and requested count do not match. |
Source code in src/benchmatrix/bench_collection.py
1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 | |
collect_paired_benchmark_runs ¶
collect_paired_benchmark_runs(
baseline_command: Sequence[str],
candidate_command: Sequence[str],
output_dir: str | Path,
*,
pair_count: int | None = None,
random_seed: int | None = None,
baseline_cwd: str | Path | None = None,
candidate_cwd: str | Path | None = None,
resume: bool = False,
retry_failed: bool = False,
) -> BenchmarkPairedRunGroup
Collect adjacent paired runs using a deterministic AB/BA schedule.
Every target pair is one atomic two-command block. AB and BA orientations
alternate, with random_seed choosing the first orientation. Both
variants use the same balanced Williams-style matrix order. A failed or
interrupted block contributes no pair; retrying reruns both variants as a
new adjacent block attempt while retaining all earlier records.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
baseline_command
|
Sequence[str]
|
Baseline pytest command without |
required |
candidate_command
|
Sequence[str]
|
Candidate pytest command without
|
required |
output_dir
|
str | Path
|
New collection directory, or an existing one when resuming. |
required |
pair_count
|
int | None
|
Complete-pair target. When omitted, collection starts with a provisional target of six and expands after matrix discovery to the smallest complete joint supercycle meeting the five-pair evidence default. |
None
|
random_seed
|
int | None
|
Deterministic AB/BA and matrix-order seed. New collections default to zero; an omitted resume value preserves the manifest. |
None
|
baseline_cwd
|
str | Path | None
|
Baseline child working directory. Defaults to the current directory for a new collection and the manifest value on resume. |
None
|
candidate_cwd
|
str | Path | None
|
Candidate child working directory, with the same rules. |
None
|
resume
|
bool
|
Continue a manifest-backed paired collection. |
False
|
retry_failed
|
bool
|
Append one atomic block attempt for every pair still
incomplete after interrupted work is resumed. Requires |
False
|
Returns:
| Type | Description |
|---|---|
BenchmarkPairedRunGroup
|
The paired collection with complete pairs and full lifecycle records. |
Raises:
| Type | Description |
|---|---|
BenchmarkCollectionError
|
If collection cannot be initialized or resumed, or supplied settings disagree with the manifest. |
Source code in src/benchmatrix/bench_collection.py
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 | |
load_benchmark_run_group ¶
load_benchmark_run_group(
path: str | Path,
) -> BenchmarkRunGroup
Load a repeated-run collection from a manifest or its directory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Collection directory or |
required |
Returns:
| Type | Description |
|---|---|
BenchmarkRunGroup
|
A validated run group. Failed attempts are retained as records but do |
BenchmarkRunGroup
|
not appear in |
Raises:
| Type | Description |
|---|---|
BenchmarkJsonError
|
If the manifest or a successful run is invalid. |
Source code in src/benchmatrix/bench_collection.py
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 | |
load_paired_benchmark_run_group ¶
load_paired_benchmark_run_group(
path: str | Path,
) -> BenchmarkPairedRunGroup
Load and validate a paired AB/BA collection manifest.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Collection directory or |
required |
Returns:
| Type | Description |
|---|---|
BenchmarkPairedRunGroup
|
A paired collection whose complete pairs contain only atomic blocks in |
BenchmarkPairedRunGroup
|
which both scheduled commands succeeded. |
Raises:
| Type | Description |
|---|---|
BenchmarkJsonError
|
If the manifest or a successful run is invalid. |
Source code in src/benchmatrix/bench_collection.py
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 | |
make_paired_ab_ba_schedule ¶
make_paired_ab_ba_schedule(
pair_count: int,
*,
random_seed: int = 0,
cell_count: int | None = None,
) -> tuple[BenchmarkPairSchedule, ...]
Return a deterministic joint AB/BA and balanced-row block schedule.
The seed chooses whether the first block is AB or BA. Later blocks
alternate, so the counts differ by at most one for odd pair_count.
Both members of a block use the same balanced cell-order row. When the
matrix size is known, each row occurs once with each orientation over a
complete joint supercycle. Omitting cell_count provides an
orientation-only, single-row schedule for compatibility and collection
before the matrix has been learned.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pair_count
|
int
|
Number of target baseline/candidate pairs. |
required |
random_seed
|
int
|
Non-negative deterministic schedule seed. |
0
|
cell_count
|
int | None
|
Positive number of cells in the benchmark matrix, when known. |
None
|
Returns:
| Type | Description |
|---|---|
tuple[BenchmarkPairSchedule, ...]
|
One schedule entry per requested pair. |
Source code in src/benchmatrix/bench_collection.py
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 | |
compare_benchmark_run_groups ¶
compare_benchmark_run_groups(
baselines: Sequence[BenchmarkRun],
candidates: Sequence[BenchmarkRun],
*,
compatibility_policy: RunCompatibilityPolicy
| None = None,
regression_policy: RegressionPolicy | None = None,
evidence_policy: EvidencePolicy | None = None,
inference_policy: InferencePolicy | None = None,
precision_policy: PrecisionPolicy | None = None,
) -> BenchmarkRunComparison
Compare repeated baseline and candidate runs as two evidence groups.
Each cell uses the median of its per-run metric values. By default, run-level BCa bootstrap intervals quantify uncertainty and a Bonferroni adjustment controls the matrix-wide family-wise error rate. Practical thresholds then distinguish improvements, regressions, equivalence, and inconclusive intervals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
baselines
|
Sequence[BenchmarkRun]
|
Repeated reference benchmark runs. |
required |
candidates
|
Sequence[BenchmarkRun]
|
Repeated candidate benchmark runs. |
required |
compatibility_policy
|
RunCompatibilityPolicy | None
|
Environment checks applied across every run. |
None
|
regression_policy
|
RegressionPolicy | None
|
Percentage thresholds for classifying changes. |
None
|
evidence_policy
|
EvidencePolicy | None
|
Minimum repeated-run and sample evidence. |
None
|
inference_policy
|
InferencePolicy | None
|
Statistical inference and multiplicity controls. |
None
|
precision_policy
|
PrecisionPolicy | None
|
Optional paired fixed-design planning target. It must remain disabled for independent groups. |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkRunComparison
|
A matrix comparison with per-side trust diagnostics. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If either run group is empty. |
TypeError
|
If a group contains a value other than |
Source code in src/benchmatrix/bench_compare.py
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 | |
compare_benchmark_runs ¶
compare_benchmark_runs(
baseline: BenchmarkRun,
candidate: BenchmarkRun,
*,
compatibility_policy: RunCompatibilityPolicy
| None = None,
regression_policy: RegressionPolicy | None = None,
inference_policy: InferencePolicy | None = None,
precision_policy: PrecisionPolicy | None = None,
) -> BenchmarkRunComparison
Compare two runs across the union of their benchmark matrix cells.
Comparisons use mean latency for single_call_latency, mean throughput
for batch_throughput, and p95 latency for tail_latency. Missing
cells and changed case or unit metadata are retained as explicit results
rather than silently dropped.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
baseline
|
BenchmarkRun
|
Reference benchmark run. |
required |
candidate
|
BenchmarkRun
|
Benchmark run being evaluated. |
required |
compatibility_policy
|
RunCompatibilityPolicy | None
|
Environment checks to apply. Defaults to permissive compatibility. |
None
|
regression_policy
|
RegressionPolicy | None
|
Thresholds used to classify cell changes. Defaults to a five-percent threshold. |
None
|
inference_policy
|
InferencePolicy | None
|
Run-level uncertainty analysis to apply. A single run cannot produce a default bootstrap interval and is therefore inconclusive unless the legacy method is selected explicitly. |
None
|
precision_policy
|
PrecisionPolicy | None
|
Optional precision planning. Planning requires an explicitly paired design and is rejected for this single-run API. |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkRunComparison
|
A deterministic comparison across both run matrices. |
Source code in src/benchmatrix/bench_compare.py
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 | |
compare_paired_benchmark_run_groups ¶
compare_paired_benchmark_run_groups(
baselines: Sequence[BenchmarkRun],
candidates: Sequence[BenchmarkRun],
*,
pair_strata: Sequence[str] | None = None,
precision_pair_count_multiple: int = 2,
compatibility_policy: RunCompatibilityPolicy
| None = None,
regression_policy: RegressionPolicy | None = None,
evidence_policy: EvidencePolicy | None = None,
inference_policy: InferencePolicy | None = None,
precision_policy: PrecisionPolicy | None = None,
) -> BenchmarkRunComparison
Compare explicitly matched baseline/candidate process-run pairs.
The values at each position must come from one adjacent collection block. Complete pairs, rather than individual run files, are the independent experimental units. Pairing is explicit in this API and is never inferred from filenames or timestamps.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
baselines
|
Sequence[BenchmarkRun]
|
Baseline members in pair order. |
required |
candidates
|
Sequence[BenchmarkRun]
|
Candidate members in the same pair order. |
required |
pair_strata
|
Sequence[str] | None
|
Optional fixed-design stratum label for each pair, such
as its recorded |
None
|
precision_pair_count_multiple
|
int
|
Divisibility constraint for a future confirmatory collection. Paired designs default to an even count; manifest-backed collections pass their complete joint design supercycle. |
2
|
compatibility_policy
|
RunCompatibilityPolicy | None
|
Environment checks applied across every run. |
None
|
regression_policy
|
RegressionPolicy | None
|
Percentage thresholds for classifying changes. |
None
|
evidence_policy
|
EvidencePolicy | None
|
Minimum complete-pair and sample evidence. |
None
|
inference_policy
|
InferencePolicy | None
|
Statistical inference and multiplicity controls. |
None
|
precision_policy
|
PrecisionPolicy | None
|
Optional fixed-design precision target for a fresh future paired collection. |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkRunComparison
|
A paired matrix comparison with per-side trust diagnostics. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the sequences are empty or have different lengths. |
TypeError
|
If either sequence contains a non- |
Source code in src/benchmatrix/bench_compare.py
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 | |
benchmark_batch_throughput ¶
benchmark_batch_throughput(
benchmark: BenchmarkFixture,
implementation_name: str,
function: TargetFunction,
case_name: str,
case: BenchmarkCase,
*,
config: BenchmarkConfig | None = None,
stream: TextIO | None = None,
) -> BenchmarkInvocationRecord
Benchmark batch throughput for one implementation and case.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
benchmark
|
BenchmarkFixture
|
Pytest-benchmark fixture instance. |
required |
implementation_name
|
str
|
Name of the implementation under test. |
required |
function
|
TargetFunction
|
Synchronous function implementation to benchmark. The function must complete the measured work before returning. |
required |
case_name
|
str
|
Name of the input case under test. |
required |
case
|
BenchmarkCase
|
Benchmark input case. If |
required |
config
|
BenchmarkConfig | None
|
Benchmark harness configuration. Defaults to
|
None
|
stream
|
TextIO | None
|
Stream used for progress output. Defaults to |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkInvocationRecord
|
A lightweight invocation record containing metadata attached to the |
BenchmarkInvocationRecord
|
benchmark. This is not a timing result. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
Warning
Throughput is derived from one synchronous target invocation. It does
not model concurrency, saturation, queueing, or service request load.
case.work_units must accurately describe work completed by each
target call.
Source code in src/benchmatrix/bench_harness.py
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 | |
benchmark_single_call_latency ¶
benchmark_single_call_latency(
benchmark: BenchmarkFixture,
implementation_name: str,
function: TargetFunction,
case_name: str,
case: BenchmarkCase,
*,
config: BenchmarkConfig | None = None,
stream: TextIO | None = None,
) -> BenchmarkInvocationRecord
Benchmark single-call latency for one implementation and case.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
benchmark
|
BenchmarkFixture
|
Pytest-benchmark fixture instance. |
required |
implementation_name
|
str
|
Name of the implementation under test. |
required |
function
|
TargetFunction
|
Synchronous function implementation to benchmark. The function must complete the measured work before returning. |
required |
case_name
|
str
|
Name of the input case under test. |
required |
case
|
BenchmarkCase
|
Benchmark input case. |
required |
config
|
BenchmarkConfig | None
|
Benchmark harness configuration. Defaults to
|
None
|
stream
|
TextIO | None
|
Stream used for progress output. Defaults to |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkInvocationRecord
|
A lightweight invocation record containing metadata attached to the |
BenchmarkInvocationRecord
|
benchmark. This is not a timing result. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
Warning
This measures completed target-function work only. Input construction,
lazy-result consumption, and other setup are excluded unless they occur
inside function.
Source code in src/benchmatrix/bench_harness.py
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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | |
benchmark_tail_latency ¶
benchmark_tail_latency(
benchmark: BenchmarkFixture,
implementation_name: str,
function: TargetFunction,
case_name: str,
case: BenchmarkCase,
*,
config: BenchmarkConfig | None = None,
stream: TextIO | None = None,
) -> BenchmarkInvocationRecord
Benchmark latency distribution for one implementation and case.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
benchmark
|
BenchmarkFixture
|
Pytest-benchmark fixture instance. |
required |
implementation_name
|
str
|
Name of the implementation under test. |
required |
function
|
TargetFunction
|
Synchronous function implementation to benchmark. The function must complete the measured work before returning. |
required |
case_name
|
str
|
Name of the input case under test. |
required |
case
|
BenchmarkCase
|
Benchmark input case. |
required |
config
|
BenchmarkConfig | None
|
Benchmark harness configuration. Defaults to
|
None
|
stream
|
TextIO | None
|
Stream used for progress output. Defaults to |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkInvocationRecord
|
A lightweight invocation record containing metadata attached to the |
BenchmarkInvocationRecord
|
benchmark. This is not a timing result. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
Warning
This uses pedantic mode. Tail percentiles should be calculated from
pytest-benchmark JSON data values. This is an
implementation-comparison metric, not production p95/p99 latency under
load.
If case.fresh_inputs is false and config.pedantic_iterations is
greater than one, raw samples are per-round averages of multiple calls,
not individual-call latency samples. The harness emits a runtime
warning for that configuration.
Source code in src/benchmatrix/bench_harness.py
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | |
deep_copy ¶
deep_copy(value: object) -> object
Return a deep copy of value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
object
|
Value to copy. |
required |
Returns:
| Type | Description |
|---|---|
object
|
A deep copy of |
Source code in src/benchmatrix/bench_harness.py
933 934 935 936 937 938 939 940 941 942 | |
make_benchmark_parameters ¶
make_benchmark_parameters(
implementations: Mapping[str, TargetFunction],
cases: Mapping[str, BenchmarkCase]
| Iterable[BenchmarkCase],
*,
metrics: Iterable[MetricName] | None = None,
) -> list[object]
Create pytest parameters for a metric-by-implementation-by-case matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
implementations
|
Mapping[str, TargetFunction]
|
Mapping from implementation name to target function. |
required |
cases
|
Mapping[str, BenchmarkCase] | Iterable[BenchmarkCase]
|
Mapping or iterable of benchmark input cases. |
required |
metrics
|
Iterable[MetricName] | None
|
Metrics to include in the parameter matrix. Defaults to all supported benchmatrix metrics. |
None
|
Returns:
| Type | Description |
|---|---|
list[object]
|
A list of values suitable for |
Source code in src/benchmatrix/bench_harness.py
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 | |
make_benchmark_test ¶
make_benchmark_test(
implementations: Mapping[str, TargetFunction],
cases: Mapping[str, BenchmarkCase]
| Iterable[BenchmarkCase],
*,
metrics: Iterable[MetricName] | None = None,
config: BenchmarkConfig | None = None,
) -> Callable[..., None]
Create a pytest test function for a complete benchmark matrix.
Assign the returned function to a module-level name beginning with
test_ so pytest collects it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
implementations
|
Mapping[str, TargetFunction]
|
Mapping from implementation name to target function. |
required |
cases
|
Mapping[str, BenchmarkCase] | Iterable[BenchmarkCase]
|
Mapping or iterable of benchmark input cases. |
required |
metrics
|
Iterable[MetricName] | None
|
Metrics to include in the parameter matrix. Defaults to all supported benchmatrix metrics. |
None
|
config
|
BenchmarkConfig | None
|
Benchmark harness configuration. Defaults to
|
None
|
Returns:
| Type | Description |
|---|---|
Callable[..., None]
|
A parametrized pytest test function ready for module-level assignment. |
Source code in src/benchmatrix/bench_harness.py
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 | |
run_benchmark_metric ¶
run_benchmark_metric(
benchmark: BenchmarkFixture,
metric_name: MetricName,
implementation_name: str,
function: TargetFunction,
case_name: str,
case: BenchmarkCase,
*,
config: BenchmarkConfig | None = None,
stream: TextIO | None = None,
) -> BenchmarkInvocationRecord
Run one benchmark metric for one implementation and case.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
benchmark
|
BenchmarkFixture
|
Pytest-benchmark fixture instance. |
required |
metric_name
|
MetricName
|
Metric to benchmark. |
required |
implementation_name
|
str
|
Name of the implementation under test. |
required |
function
|
TargetFunction
|
Synchronous function implementation to benchmark. |
required |
case_name
|
str
|
Name of the input case under test. |
required |
case
|
BenchmarkCase
|
Benchmark input case. |
required |
config
|
BenchmarkConfig | None
|
Benchmark harness configuration. Defaults to
|
None
|
stream
|
TextIO | None
|
Stream used for progress output. Defaults to |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkInvocationRecord
|
A lightweight invocation record containing metadata attached to the |
BenchmarkInvocationRecord
|
benchmark. This is not a timing result. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
Source code in src/benchmatrix/bench_harness.py
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 | |
shallow_copy ¶
shallow_copy(value: object) -> object
Return a shallow copy of value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
object
|
Value to copy. |
required |
Returns:
| Type | Description |
|---|---|
object
|
A shallow copy of |
Source code in src/benchmatrix/bench_harness.py
921 922 923 924 925 926 927 928 929 930 | |
default_benchmark_policy ¶
default_benchmark_policy() -> BenchmarkPolicyConfig
Return benchmatrix's built-in comparison policies.
Source code in src/benchmatrix/bench_policy.py
110 111 112 113 114 115 116 117 118 | |
load_benchmark_policy ¶
load_benchmark_policy(
path: str | Path | None = None,
*,
search_from: str | Path | None = None,
) -> BenchmarkPolicyConfig
Load tool.benchmatrix policy from TOML.
With an explicit path, the file must contain [tool.benchmatrix].
Otherwise the nearest pyproject.toml at or above search_from is
inspected. Discovery stops at the first pyproject; a project without a
benchmatrix table uses built-in defaults.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path | None
|
Explicit TOML or pyproject path. |
None
|
search_from
|
str | Path | None
|
File or directory from which to discover pyproject.toml. Defaults to the current working directory. |
None
|
Returns:
| Type | Description |
|---|---|
BenchmarkPolicyConfig
|
Validated compatibility, evidence, inference, precision, and regression policies. |
Raises:
| Type | Description |
|---|---|
BenchmarkPolicyError
|
If an explicit file is missing, TOML is invalid, or the benchmatrix configuration does not satisfy its schema. |
Source code in src/benchmatrix/bench_policy.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 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 | |
format_comparison_report_markdown ¶
format_comparison_report_markdown(
report: BenchmarkComparisonReport,
) -> str
Render a comparison report as deterministic GitHub-flavored Markdown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
report
|
BenchmarkComparisonReport
|
Portable comparison report to render. |
required |
Returns:
| Type | Description |
|---|---|
str
|
A complete Markdown document ending with a newline. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
Source code in src/benchmatrix/bench_report.py
1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 | |
load_comparison_report ¶
load_comparison_report(
path: str | Path,
) -> BenchmarkComparisonReport
Load and strictly validate a versioned comparison report.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
JSON report written by |
required |
Returns:
| Type | Description |
|---|---|
BenchmarkComparisonReport
|
A portable typed comparison report. |
Raises:
| Type | Description |
|---|---|
BenchmarkJsonError
|
If the file is unreadable, malformed, unsupported, or inconsistent with the report schema. |
Source code in src/benchmatrix/bench_report.py
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 | |
write_comparison_report ¶
write_comparison_report(
report: BenchmarkComparisonReport, path: str | Path
) -> None
Write a comparison report as deterministic strict JSON.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
report
|
BenchmarkComparisonReport
|
Portable report to serialize. |
required |
path
|
str | Path
|
Destination JSON path. |
required |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
OSError
|
If the destination cannot be written. |
Source code in src/benchmatrix/bench_report.py
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 | |
write_comparison_report_markdown ¶
write_comparison_report_markdown(
report: BenchmarkComparisonReport, path: str | Path
) -> None
Write a comparison report as deterministic Markdown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
report
|
BenchmarkComparisonReport
|
Portable report to render. |
required |
path
|
str | Path
|
Destination Markdown path. |
required |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
OSError
|
If the destination cannot be written. |
Source code in src/benchmatrix/bench_report.py
1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 | |
display_benchmark_row ¶
display_benchmark_row(
row: ParsedBenchmarkRow, stream: TextIO | None = None
) -> None
Print one metric-aware summary of a parsed benchmark row.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
row
|
ParsedBenchmarkRow
|
Parsed benchmark row to display. |
required |
stream
|
TextIO | None
|
Output stream. Defaults to |
None
|
Source code in src/benchmatrix/bench_results.py
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 | |
display_benchmark_rows ¶
display_benchmark_rows(
rows: Iterable[ParsedBenchmarkRow],
stream: TextIO | None = None,
) -> None
Print concise metric-aware summaries of parsed benchmark rows.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rows
|
Iterable[ParsedBenchmarkRow]
|
Parsed benchmark rows. |
required |
stream
|
TextIO | None
|
Output stream. Defaults to |
None
|
Source code in src/benchmatrix/bench_results.py
305 306 307 308 309 310 311 312 313 314 315 316 | |
load_benchmark_json ¶
load_benchmark_json(
path: str | Path,
) -> list[ParsedBenchmarkRow]
Load benchmatrix-tagged pytest-benchmark JSON and derive metric views.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to a JSON file created with |
required |
Returns:
| Type | Description |
|---|---|
list[ParsedBenchmarkRow]
|
Benchmatrix-tagged rows with raw pytest-benchmark statistics and derived |
list[ParsedBenchmarkRow]
|
metric-specific fields. Non-benchmatrix rows are rejected. |
Raises:
| Type | Description |
|---|---|
BenchmarkJsonError
|
If the JSON does not have the expected pytest-benchmark and benchmatrix structure. |
Source code in src/benchmatrix/bench_results.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
load_benchmark_run ¶
load_benchmark_run(path: str | Path) -> BenchmarkRun
Load a benchmatrix run from pytest-benchmark JSON.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to a JSON file created with |
required |
Returns:
| Type | Description |
|---|---|
BenchmarkRun
|
A first-class run containing matrix rows and top-level run metadata. |
Raises:
| Type | Description |
|---|---|
BenchmarkJsonError
|
If the JSON does not have the expected pytest-benchmark and benchmatrix structure. |
Source code in src/benchmatrix/bench_results.py
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 | |
plan_paired_precision ¶
plan_paired_precision(
baseline_values: Sequence[float],
candidate_values: Sequence[float],
*,
lower_is_better: bool,
target_half_width_percent: float,
confidence_level: float = 0.95,
family_size: int = 1,
multiplicity: MultiplicityCorrection = "bonferroni",
strata: Sequence[str] | None = None,
minimum_pairs: int = _MINIMUM_GROUP_SIZE,
pair_count_multiple: int = 2,
) -> PrecisionPlan
Estimate a fixed confirmatory pair count from paired pilot runs.
The planning approximation uses the residual standard deviation of signed
paired log ratios. Positive signed log ratios mean improvement, regardless
of metric direction. When fixed collection-design strata such as AB and
BA are supplied, a separate mean is fitted for each stratum so a fixed
orientation effect is not counted as future random variation. Student-t
degrees of freedom account for those fitted means.
The requested percentage half-width is converted to
log1p(target / 100). This is a multiplicative mean-log-ratio proxy for
the formal ratio-of-marginal-medians BCa estimand; the two targets are not
identical. minimum_pairs and pair_count_multiple are then applied
to the smallest unconstrained count. The default multiple of two keeps a
direct AB/BA plan even. With bonferroni, confidence is adjusted across
family_size cells before calculating the count.
required_pairs is the size of a fresh future confirmatory collection.
additional_pairs is only its arithmetic difference from the pilot
count, not a recommendation to append runs to the analyzed pilot. This
calculation describes precision only: it does not estimate power, justify
optional stopping, or update a confirmatory run count after results have
been examined.
Source code in src/benchmatrix/bench_statistics.py
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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 | |