Skip to content

Core

Core functionality for the EasyBench benchmark library.

This module provides classes and functions for running and measuring performance benchmarks with support for fixtures, memory tracking, and convenient result reporting.

BenchConfig

Bases: PartialBenchConfig

Complete configuration for EasyBench with required values.

Source code in easybench/core.py
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
class BenchConfig(PartialBenchConfig):
    """Complete configuration for EasyBench with required values."""

    trials: int = 5
    loops_per_trial: int = 1
    warmups: int = 0
    sort_by: SortType = "def"
    reverse: bool = False
    memory: bool | MemoryUnit | str = False
    time: bool | TimeUnit | str = TimeUnit.SECONDS
    color: bool = True
    show_output: bool = False
    return_output: bool = False
    reporters: list[Reporter] = [ConsoleReporter()]
    progress: bool | Callable = False
    include: str | None = None
    exclude: str | None = None
    clip_outliers: float | None = 0.0

BenchParams

Bases: BaseModel

Class to store parameters for easybench decorators.

This class allows grouping parameters for various easybench decorators together, making it easier to reuse parameter sets across multiple benchmarks.

Attributes:

Name Type Description
name str | None

Optional name for this parameter set (used for comparison display)

params dict[str, Any]

Dictionary of parameters for @bench decorator

fn_params dict[str, Any]

Dictionary of parameters for @bench.fn_params decorator

Example
params = BenchParams(
    name="Large dataset",
    params={"item": 123, "big_list": lambda: list(range(1_000_000))},
)

@bench(params)
def add_item(item, big_list):
    big_list.append(item)
Source code in easybench/core.py
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
class BenchParams(BaseModel):
    """
    Class to store parameters for easybench decorators.

    This class allows grouping parameters for various easybench decorators together,
    making it easier to reuse parameter sets across multiple benchmarks.

    Attributes:
        name: Optional name for this parameter set (used for comparison display)
        params: Dictionary of parameters for @bench decorator
        fn_params: Dictionary of parameters for @bench.fn_params decorator

    Example:
        ```python
        params = BenchParams(
            name="Large dataset",
            params={"item": 123, "big_list": lambda: list(range(1_000_000))},
        )

        @bench(params)
        def add_item(item, big_list):
            big_list.append(item)
        ```

    """

    name: str | None = None
    params: dict[str, Any] = {}
    fn_params: dict[str, Any] = {}

    model_config = {
        "arbitrary_types_allowed": True,
    }

    def __mul__(self, other: BenchParams) -> BenchParams:
        """
        Multiply (combine) two BenchParams objects.

        This creates a new BenchParams with combined properties from both objects.
        When two BenchParams are multiplied, their names are joined with "x",
        and their params and fn_params dictionaries are merged.

        Args:
            other: Another BenchParams object to combine with

        Returns:
            A new BenchParams with combined properties

        Example:
            ```python
            small = BenchParams(name="Small", params={"size": 100})
            fast = BenchParams(name="Fast", params={"algorithm": "quicksort"})

            # Creates BenchParams with name="Small × Fast" and
            # params={"size": 100, "algorithm": "quicksort"}
            small_fast = small * fast
            ```

        """
        if not isinstance(other, BenchParams):
            return NotImplemented

        # Combine names
        if self.name and other.name:
            name = f"{self.name} × {other.name}"
        else:
            return NotImplemented

        # Combine params
        params = self.params.copy()
        params.update(other.params)

        # Combine fn_params
        fn_params = self.fn_params.copy()
        fn_params.update(other.fn_params)

        return BenchParams(
            name=name,
            params=params,
            fn_params=fn_params,
        )

__mul__(other)

Multiply (combine) two BenchParams objects.

This creates a new BenchParams with combined properties from both objects. When two BenchParams are multiplied, their names are joined with "x", and their params and fn_params dictionaries are merged.

Parameters:

Name Type Description Default
other BenchParams

Another BenchParams object to combine with

required

Returns:

Type Description
BenchParams

A new BenchParams with combined properties

Example
small = BenchParams(name="Small", params={"size": 100})
fast = BenchParams(name="Fast", params={"algorithm": "quicksort"})

# Creates BenchParams with name="Small × Fast" and
# params={"size": 100, "algorithm": "quicksort"}
small_fast = small * fast
Source code in easybench/core.py
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
def __mul__(self, other: BenchParams) -> BenchParams:
    """
    Multiply (combine) two BenchParams objects.

    This creates a new BenchParams with combined properties from both objects.
    When two BenchParams are multiplied, their names are joined with "x",
    and their params and fn_params dictionaries are merged.

    Args:
        other: Another BenchParams object to combine with

    Returns:
        A new BenchParams with combined properties

    Example:
        ```python
        small = BenchParams(name="Small", params={"size": 100})
        fast = BenchParams(name="Fast", params={"algorithm": "quicksort"})

        # Creates BenchParams with name="Small × Fast" and
        # params={"size": 100, "algorithm": "quicksort"}
        small_fast = small * fast
        ```

    """
    if not isinstance(other, BenchParams):
        return NotImplemented

    # Combine names
    if self.name and other.name:
        name = f"{self.name} × {other.name}"
    else:
        return NotImplemented

    # Combine params
    params = self.params.copy()
    params.update(other.params)

    # Combine fn_params
    fn_params = self.fn_params.copy()
    fn_params.update(other.fn_params)

    return BenchParams(
        name=name,
        params=params,
        fn_params=fn_params,
    )

CustomizedFunction

Bases: Protocol[P, R_co]

Function with _bench_customize.

Source code in easybench/core.py
213
214
215
216
217
218
219
220
class CustomizedFunction(Protocol[P, R_co]):
    """Function with _bench_customize."""

    def __call__(self, *args: P.args, **kwds: P.kwargs) -> R_co:
        """Call method."""
        ...

    _bench_customize: dict[str, Any]

__call__(*args, **kwds)

Call method.

Source code in easybench/core.py
216
217
218
def __call__(self, *args: P.args, **kwds: P.kwargs) -> R_co:
    """Call method."""
    ...

EasyBench

Base class for benchmark classes.

Source code in easybench/core.py
 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
 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
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
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
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
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
class EasyBench:
    """Base class for benchmark classes."""

    # Default Benchmark Config
    bench_config = BenchConfig()

    def __init__(self, bench_config: BenchConfig | None = None) -> None:
        """
        Initialize the benchmark class with optional configuration.

        Args:
            bench_config: Configuration for the benchmark

        """
        # [IMPORTANT!] This init must be idempotent!
        if bench_config is not None:
            self.bench_config = bench_config
        else:
            self.bench_config = self.__class__.bench_config.model_copy(deep=True)

    def __init_subclass__(cls, **kwargs: object) -> None:
        """
        Handle subclass initialization to ensure proper configuration.

        Args:
            **kwargs: Additional keyword arguments

        """
        super().__init_subclass__(**kwargs)

        if cls.__init__ is not EasyBench.__init__:
            original_init = cls.__init__

            def safe_init(self: EasyBench, *args: object, **kwargs: object) -> None:
                config = cast("BenchConfig", kwargs.get("bench_config"))
                EasyBench.__init__(
                    self,
                    bench_config=config,
                )
                original_init(self, *args, **kwargs)  # type: ignore [arg-type]

            cls.__init__ = safe_init  # type: ignore [method-assign]

    # Default empty implementations of special methods
    def setup_class(self) -> None:
        """Set up resources before all benchmarks in the class."""

    def teardown_class(self) -> None:
        """Teardown method called once after all benchmarks in the class."""

    def setup_function(self) -> None:
        """Set up resources before each benchmark function."""

    def teardown_function(self) -> None:
        """Teardown method called after each benchmark function."""

    def setup_trial(self) -> None:
        """Set up resources before each trial execution."""

    def teardown_trial(self) -> None:
        """Teardown method called after each trial execution."""

    def _initialize_bench_params(
        self,
        config: PartialBenchConfig | None = None,
        fixture_registry: FixtureRegistry | None = None,
    ) -> tuple[
        BenchConfig,
        FixtureRegistry,
    ]:
        """
        Initialize benchmark parameters with defaults from config if not provided.

        Args:
            config: Configuration with optional parameters, can be complete or partial
            fixture_registry: Registry containing fixtures to use for the benchmarks

        Returns:
            Tuple of complete BenchConfig and fixture registry

        """
        # Create a complete config
        complete_config = ensure_full_config(config, self.bench_config)

        if fixture_registry is None:
            fixture_registry = _fixture_registry

        # If sorting by memory metrics is requested,
        # ensure memory measurement is enabled
        if (
            complete_config.sort_by in ("avg_memory", "max_memory")
            and not complete_config.memory
        ):
            complete_config.memory = True
            logger.info(
                "Note: Enabled memory measurement because sort_by='%s' was specified",
                complete_config.sort_by,
            )

        if (
            complete_config.sort_by in ("avg", "max", "min")
            and not complete_config.time
        ):
            complete_config.time = True
            logger.info(
                "Note: Enabled time measurement because sort_by='%s' was specified",
                complete_config.sort_by,
            )

        return complete_config, fixture_registry

    def _get_loops_per_trial(
        self,
        method: Callable[..., object],
        config: BenchConfig,
    ) -> int:
        """
        Get the number of loops per trial, considering method customization.

        Args:
            method: The benchmark method
            config: Benchmark configuration

        Returns:
            Number of loops per trial

        """
        loops_per_trial = config.loops_per_trial
        if hasattr(method, "_bench_customize"):
            method = cast("CustomizedFunction", method)
            custom_config = method._bench_customize  # noqa: SLF001
            if custom_config.get("loops_per_trial") is not None:
                loops_per_trial = custom_config["loops_per_trial"]
        return loops_per_trial

    def _create_trial_range(
        self,
        method: Callable[..., object],
        config: BenchConfig,
    ) -> range | Iterable:
        """
        Create a trial range with optional progress tracking.

        Args:
            method: The benchmark method
            config: Benchmark configuration

        Returns:
            Trial range

        """
        total_trials = config.warmups + config.trials

        if config.progress:
            progress_func = tqdm if config.progress is True else config.progress
            trial_range = progress_func(
                range(total_trials),
                desc=f"Function: {getattr(method, '__name__', 'unknown')}",
                total=total_trials,
            )
        else:
            trial_range = range(total_trials)

        return trial_range

    def _run_benchmark_trials(
        self,
        method: Callable[..., object],
        config: BenchConfig,
        fixture_registry: FixtureRegistry,
        values: dict[str, object],
    ) -> ResultType:
        """
        Run a single benchmark method for the specified number of trials.

        Args:
            method: The benchmark method to run
            config: Benchmark configuration
            fixture_registry: Registry containing fixtures
            values: Dictionary to store fixture values

        Returns:
            Dictionary containing benchmark results

        """
        capture_output = config.show_output or config.return_output
        result_dict: ResultType = {}

        if config.time:
            result_dict["times"] = []
        if config.memory:
            result_dict["memory"] = []
        if capture_output:
            result_dict["output"] = []

        # Get customized loops per trial setting
        loops_per_trial = self._get_loops_per_trial(method, config)

        with self._manage_scope("function", values, fixture_registry):
            warmup = True
            # Create trial range with progress tracking if enabled
            trial_range = self._create_trial_range(method, config)

            for i in trial_range:
                if i == config.warmups:
                    warmup = False

                with self._manage_scope("trial", values, fixture_registry):
                    # Run the benchmark and record the time, memory, and result
                    execution_time, memory_usage, func_result = (
                        self._run_single_benchmark(
                            method=method,
                            values=values,
                            memory=bool(config.memory),
                            loops_per_trial=loops_per_trial,
                        )
                    )

                    if not warmup:
                        if config.time:
                            result_dict["times"].append(execution_time)

                        if config.memory and memory_usage is not None:
                            result_dict["memory"].append(memory_usage)

                        if capture_output:
                            result_dict["output"].append(func_result)

        return result_dict

    def _get_params_list(
        self,
        method_name: str,
        method: Callable[..., object],
        config: BenchConfig,
    ) -> list[BenchParams]:
        """Get the parameter sets from the method."""
        method = cast("ParametrizedFunction", method)
        params_list = list(method._bench_params)  # noqa: SLF001
        if config.include:
            params_list = [
                params
                for params in params_list
                if re.search(config.include, f"{method_name} ({params.name})")
            ]
        if config.exclude:
            params_list = [
                params
                for params in params_list
                if not re.search(config.exclude, f"{method_name} ({params.name})")
            ]
        return params_list

    def _process_parametrized_method(
        self,
        method_info: tuple[str, Callable[..., object], list[BenchParams]],
        config: BenchConfig,
        fixture_registry: FixtureRegistry,
        values: dict[str, object],
    ) -> ResultsType:
        """
        Process a parametrized benchmark method with multiple parameter sets.

        Args:
            method_info: (method_name, method, params_list)
                method_name: Name of the benchmark method
                method: The benchmark method to run
                params_list: Parameter sets of the method
            config: Benchmark configuration
            fixture_registry: Registry containing fixtures
            values: Dictionary to store fixture values

        Returns:
            A dictionary of all results

        """
        method_name, method, params_list = method_info
        all_results: ResultsType = {}

        # Setup progress for parameter sets if enabled
        if config.progress:
            progress_func = tqdm if config.progress is True else config.progress
            param_iter = progress_func(
                enumerate(params_list),
                desc=f"Params for {method_name}",
                total=len(params_list),
            )
        else:
            param_iter = enumerate(params_list)

        # Run benchmarks for each parameter set
        for i, params in param_iter:
            # Create a name for this parameter set
            param_name = f"params_{i+1}"
            if params.name:
                param_name = params.name

            result_name = f"{method_name} ({param_name})"

            # Register parameter fixtures
            param_fixtures = {}

            # Apply function parameters
            if params.fn_params:
                for name, value in params.fn_params.items():
                    param_fixtures[name] = lambda v=value: v

            # Apply bench parameters
            if params.params:
                for name, value in params.params.items():
                    if callable(value) and not isinstance(value, type):
                        param_fixtures[name] = value
                    else:
                        param_fixtures[name] = lambda v=value: v

            # Save original fixtures to restore later
            original_fixtures = fixture_registry["trial"].copy()

            # Apply parameter fixtures
            fixture_registry["trial"].update(param_fixtures)

            # Run the benchmark for this parameter set
            all_results[result_name] = self._run_benchmark_trials(
                method=method,
                config=config,
                fixture_registry=fixture_registry,
                values=values,
            )

            # Restore original fixtures
            fixture_registry["trial"] = original_fixtures

        return all_results

    def _run_benchmarks(
        self,
        config: BenchConfig,
        fixture_registry: FixtureRegistry,
    ) -> ResultsType:
        """
        Execute all benchmark methods for the specified number of trials.

        Args:
            config: Benchmark configuration
            fixture_registry: Registry containing fixtures

        Returns:
            Dictionary mapping benchmark names to their results

        """
        benchmark_methods = self._discover_benchmark_methods(config)
        results: ResultsType = {}
        values: dict[str, object] = {}

        if not benchmark_methods:
            logger.warning("No benchmark methods found to run.")
            return results

        with self._manage_scope("class", values, fixture_registry):
            # Use progress bar if enabled
            if config.progress:
                # Get the progress function (tqdm or custom)
                progress_func = tqdm if config.progress is True else config.progress
                # Apply progress bar to methods
                method_items = progress_func(
                    benchmark_methods.items(),
                    desc="Benchmarking",
                    total=len(benchmark_methods),
                )
            else:
                method_items = benchmark_methods.items()

            for method_name, method in method_items:
                # Check for custom name if available
                display_name = self._get_method_custom_name(method) or method_name

                # Check if this method is parametrized
                if hasattr(method, "_bench_params"):
                    # Process parametrized method with include/exclude patterns
                    params_list = self._get_params_list(
                        method_name=display_name,
                        method=method,
                        config=config,
                    )
                    param_results = self._process_parametrized_method(
                        method_info=(display_name, method, params_list),
                        config=config,
                        fixture_registry=fixture_registry,
                        values=values,
                    )
                    results.update(param_results)
                else:
                    # Regular (non-parametrized) method
                    results[display_name] = self._run_benchmark_trials(
                        method=method,
                        config=config,
                        fixture_registry=fixture_registry,
                        values=values,
                    )

        return results

    def bench(
        self,
        config: PartialBenchConfig | None = None,
        fixture_registry: FixtureRegistry | None = None,
        **kwargs: object,
    ) -> ResultsType:
        """
        Run all benchmark methods for the specified number of trials.

        Args:
            config: Configuration for the benchmark, can be complete or partial
            fixture_registry: Registry containing fixtures to use for the benchmarks
            **kwargs: Legacy keyword arguments for backward compatibility

        Returns:
            Dictionary mapping benchmark names to their results

        """
        # Support legacy keyword arguments
        if kwargs and not config:
            try:
                config = PartialBenchConfig(**kwargs)  # type: ignore [arg-type]
            except TypeError as e:
                msg = f"Invalid keywords: {e}"
                raise ValueError(msg) from e
        elif kwargs:
            logger.warning(
                "Both config and keyword arguments provided. "
                "Using config and ignoring keyword arguments.",
            )

        # Initialize parameters
        complete_config, fixture_registry = self._initialize_bench_params(
            config,
            fixture_registry,
        )

        # Run all benchmarks
        raw_results = self._run_benchmarks(
            config=complete_config,
            fixture_registry=fixture_registry,
        )

        # Process results (apply outlier clipping if configured)
        processed_results = self.process_results(raw_results, complete_config)

        # Display results using reporters
        self.report_results(
            results=processed_results,
            config=complete_config,
        )

        # Return the processed results
        return processed_results

    class ScopeManager:
        """Context manager for handling benchmark scopes."""

        def __init__(
            self,
            bench_instance: EasyBench,
            scope: ScopeType,
            values: dict[str, object],
            fixture_registry: FixtureRegistry,
        ) -> None:
            """
            Initialize scope manager.

            Args:
                bench_instance: The benchmark instance
                scope: The scope type (trial, function, class)
                values: Dictionary to store fixture values
                fixture_registry: Registry containing fixtures

            """
            self.bench_instance = bench_instance
            self.scope = scope
            self.values = values
            self.fixture_registry = fixture_registry
            self.generators: list[types.GeneratorType] = []

        def __enter__(self) -> EasyBench.ScopeManager:
            """
            Set up resources for the scope.

            Returns:
                Self for context manager protocol

            """
            match self.scope:
                case "class":
                    self.bench_instance.setup_class()
                case "function":
                    self.bench_instance.setup_function()
                case "trial":
                    self.bench_instance.setup_trial()
                case _:
                    scope_err = f"Invalid scope: {self.scope}"
                    raise ValueError(scope_err)

            # Set up fixtures
            fixtures = self.fixture_registry[self.scope]
            self.generators, _values = self.setup_fixtures(fixtures)
            self.values.update(_values)
            return self

        def __exit__(
            self,
            exc_type: type[BaseException] | None,
            exc_val: BaseException | None,
            exc_tb: object,
        ) -> None:
            """
            Clean up resources when exiting the context.

            Args:
                exc_type: Exception type if an exception was raised
                exc_val: Exception value if an exception was raised
                exc_tb: Exception traceback if an exception was raised

            """
            # Clean up fixtures
            self.teardown_fixtures(self.generators)
            match self.scope:
                case "class":
                    self.bench_instance.teardown_class()
                case "function":
                    self.bench_instance.teardown_function()
                case "trial":
                    self.bench_instance.teardown_trial()
                case _:
                    scope_err = f"Invalid scope: {self.scope}"
                    raise ValueError(scope_err)

        def setup_fixtures(
            self,
            fixtures: dict[str, object],
        ) -> tuple[list[types.GeneratorType], dict[str, object]]:
            """
            Set up fixtures for a given scope.

            Args:
                fixtures: The fixtures to set up

            Returns:
                Tuple of teardown generators and fixture values

            """
            teardown_generators = []
            values = {}

            # Process each fixture item
            try:
                for name, obj in fixtures.items():
                    result = obj() if callable(obj) else obj
                    # Check if the fixture function returned a generator (used yield)
                    if isinstance(result, types.GeneratorType):
                        # Handle generator-based fixtures (with yield)
                        value = next(result)
                        teardown_generators.append(result)
                    else:
                        # Handle return-based fixtures
                        value = result
                    values[name] = value
            except (TypeError, ValueError, RuntimeError) as error:
                self.teardown_fixtures(teardown_generators)
                error_msg = f"Error setting up fixture '{name}'"
                raise RuntimeError(error_msg) from error

            return teardown_generators, values

        def teardown_fixtures(self, generators: list[types.GeneratorType]) -> None:
            """
            Tear down fixtures.

            Args:
                generators: List of generators to teardown

            """
            # Move try-except outside the loop to avoid performance overhead
            errors = []
            for gen in generators:
                try:
                    next(gen)  # This should raise StopIteration
                except StopIteration:  # noqa: PERF203
                    # Expected - generator is exhausted
                    pass
                except (RuntimeError, ValueError) as e:
                    # Log error but continue cleanup
                    errors.append((gen, e))

            # Report errors after loop completes
            for gen, error in errors:
                logger.warning(
                    "Error during teardown of fixture '%s': %s",
                    gen,
                    str(error),
                )

    def _manage_scope(
        self,
        scope: ScopeType,
        values: dict[str, object],
        fixture_registry: FixtureRegistry,
    ) -> AbstractContextManager:
        """
        Context manager for setting up and tearing down the benchmark class.

        Args:
            scope: Scope of the fixtures to manage
            values: Dictionary to store fixture values
            fixture_registry: Registry containing fixtures

        Returns:
            A context manager for the specified scope

        """
        return self.ScopeManager(self, scope, values, fixture_registry)

    def _run_single_benchmark(
        self,
        *,
        method: Callable[..., object],
        values: dict[str, object],
        memory: bool = False,
        loops_per_trial: int = 1,
    ) -> tuple[float, float | None, object | None]:
        """
        Run a single benchmark method with the required fixtures.

        Args:
            method: The benchmark method to run
            values: Dictionary containing fixture values
            memory: Whether to measure memory usage
            loops_per_trial: Number of loops per trial

        Returns:
            A tuple containing:
            - execution time in seconds
            - memory usage in bytes (None if not measured)
            - function result (None if not captured)

        """
        # Extract the fixtures needed by this method
        required_fixtures = self._get_required_fixtures(method)
        fixture_args = {
            name: values[name] for name in required_fixtures if name in values
        }
        default_args = self._get_default_args(method)
        method_args = default_args | fixture_args

        return measure_execution(
            execution_func=lambda: method(**method_args),
            measure_memory=memory,
            loops=loops_per_trial,
        )

    def _find_benchmark_methods(self) -> dict[str, Callable[..., object]]:
        """
        Find all callable attributes in the class that start with 'bench_'.

        Returns:
            Dictionary mapping benchmark names to method objects

        """
        benchmark_methods = {}

        # Find all attributes that are callable and start with 'bench_'
        attrs = list(self.__class__.__dict__.keys())  # preserve definition order
        attrs += [attr for attr in dir(self) if attr not in attrs]  # add instance attrs
        for name in attrs:
            if name.startswith("bench_"):
                attr = getattr(self, name)
                if callable(attr):
                    benchmark_methods[name] = attr

        return benchmark_methods

    def _get_method_custom_name(self, method: Callable) -> str | None:
        """Get method's custom name."""
        if hasattr(method, "_bench_customize"):
            method = cast("CustomizedFunction", method)
            custom_config = method._bench_customize  # noqa: SLF001
            if custom_config.get("name") is not None:
                return custom_config["name"]
        return None

    def _filter_benchmark_methods(
        self,
        methods: dict[str, Callable[..., object]],
        config: BenchConfig,
    ) -> dict[str, Callable[..., object]]:
        """
        Filter benchmark methods according to include/exclude patterns.

        Args:
            methods: Dictionary of benchmark methods to filter
            config: BenchConfig

        Returns:
            Filtered dictionary mapping benchmark names to method objects

        """
        # If both include and exclude are None, return all methods
        if config.include is None and config.exclude is None:
            return methods

        filtered_methods: dict[str, Callable] = {}

        # Apply include filter if specified
        if config.include is not None:
            for name, method in methods.items():
                display_name = self._get_method_custom_name(method) or name

                if re.search(config.include, display_name) or (
                    hasattr(method, "_bench_params")
                    and any(
                        re.search(config.include, f"{display_name} ({params.name})")
                        for params in getattr(method, "_bench_params", [])
                    )
                ):
                    filtered_methods[name] = method
        else:
            # If no include filter, start with all methods
            filtered_methods = methods.copy()

        # Apply exclude filter
        if config.exclude is not None:
            for name, method in list(filtered_methods.items()):
                display_name = self._get_method_custom_name(method) or name
                if re.search(config.exclude, display_name):
                    del filtered_methods[name]

        return filtered_methods

    def _discover_benchmark_methods(
        self,
        config: BenchConfig,
    ) -> dict[str, Callable[..., object]]:
        """
        Find benchmark methods and filter according to include/exclude patterns.

        Args:
            config: BenchConfig

        Returns:
            Dictionary mapping benchmark names to method objects

        """
        # Find all benchmark methods
        benchmark_methods = self._find_benchmark_methods()

        # Apply filters
        return self._filter_benchmark_methods(benchmark_methods, config)

    def _get_required_fixtures(self, method: Callable[..., object]) -> list[str]:
        """
        Determine which fixtures are required by a method.

        Args:
            method: The method to inspect

        Returns:
            List of parameter names required by the method

        """
        sig = inspect.signature(method)
        return list(sig.parameters.keys())

    def _get_default_args(self, method: Callable[..., object]) -> dict[str, object]:
        """
        Determine the default args of a method.

        Args:
            method: The method to inspect

        Returns:
            Dictionary of default args

        """
        sig = inspect.signature(method)
        defaults = {}
        for name, param in sig.parameters.items():
            # exclude self and cls
            if name in ("self", "cls"):
                continue
            if param.default is not inspect.Parameter.empty:
                defaults[name] = param.default
        return defaults

    def report_results(
        self,
        results: ResultsType,
        config: BenchConfig,
    ) -> None:
        """
        Display benchmark results using configured reporters.

        Args:
            results: Dictionary mapping benchmark names to result data
            config: Benchmark configuration

        """
        if not results:
            logger.info("\nNo benchmark results to display.")
            return

        # Use each reporter to report the results
        for reporter in config.reporters:
            reporter.report(
                results=results,
                config=config,
            )

    def _clip_outliers(self, values: list[float], clip_value: float) -> list[float]:
        """
        Clip outliers in a list of values based on percentiles.

        Args:
            values: List of values to clip
            clip_value: Percentile threshold (0.0 to 1.0)

        Returns:
            List with maximum outliers clipped

        """
        if not values:
            return []

        # Clamp clip_value between 0.0 and 1.0
        clip_value = max(0.0, min(clip_value, 1.0))

        try:
            import numpy as np  # noqa: PLC0415

            # Convert values to NumPy array for vectorized operations
            arr = np.array(values, dtype=float)

            # Calculate upper percentile threshold
            upper = np.percentile(arr, 100 - clip_value * 100)

            # Clip only the upper values
            clipped = np.minimum(arr, upper)

            return clipped.tolist()

        except ImportError:
            sorted_vals = sorted(values)
            n = len(sorted_vals)

            # Calculate the upper percentile value using linear interpolation.
            # This logic mimics NumPy's default behavior for percentile calculation.
            percentile_index = (1.0 - clip_value) * (n - 1)
            lower_index = int(percentile_index)
            upper_index = min(lower_index + 1, n - 1)
            weight = percentile_index - lower_index

            upper_percentile = (
                sorted_vals[lower_index] * (1.0 - weight)
                + sorted_vals[upper_index] * weight
            )

            # Clip values above the upper_percentile
            return [min(v, upper_percentile) for v in values]

    def process_results(
        self,
        results: ResultsType,
        config: BenchConfig,
    ) -> ResultsType:
        """
        Process benchmark results by applying transformations like outlier clipping.

        Args:
            results: Dictionary of raw benchmark results
            config: BenchConfig

        Returns:
            Processed results

        """
        # If no clipping is needed, return the original results
        if config.clip_outliers is None or config.clip_outliers == 0.0:
            return results

        # Create a deep copy to avoid modifying the original data
        processed_results: ResultsType = {}
        clip_value = config.clip_outliers

        for method_name, data in results.items():
            processed_data = data.copy()

            # Process time measurements if present
            if "times" in data:
                processed_data["times"] = self._clip_outliers(data["times"], clip_value)

            # Process memory measurements if present
            if "memory" in data:
                processed_data["memory"] = self._clip_outliers(
                    data["memory"],
                    clip_value,
                )

            processed_results[method_name] = processed_data

        return processed_results

ScopeManager

Context manager for handling benchmark scopes.

Source code in easybench/core.py
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
class ScopeManager:
    """Context manager for handling benchmark scopes."""

    def __init__(
        self,
        bench_instance: EasyBench,
        scope: ScopeType,
        values: dict[str, object],
        fixture_registry: FixtureRegistry,
    ) -> None:
        """
        Initialize scope manager.

        Args:
            bench_instance: The benchmark instance
            scope: The scope type (trial, function, class)
            values: Dictionary to store fixture values
            fixture_registry: Registry containing fixtures

        """
        self.bench_instance = bench_instance
        self.scope = scope
        self.values = values
        self.fixture_registry = fixture_registry
        self.generators: list[types.GeneratorType] = []

    def __enter__(self) -> EasyBench.ScopeManager:
        """
        Set up resources for the scope.

        Returns:
            Self for context manager protocol

        """
        match self.scope:
            case "class":
                self.bench_instance.setup_class()
            case "function":
                self.bench_instance.setup_function()
            case "trial":
                self.bench_instance.setup_trial()
            case _:
                scope_err = f"Invalid scope: {self.scope}"
                raise ValueError(scope_err)

        # Set up fixtures
        fixtures = self.fixture_registry[self.scope]
        self.generators, _values = self.setup_fixtures(fixtures)
        self.values.update(_values)
        return self

    def __exit__(
        self,
        exc_type: type[BaseException] | None,
        exc_val: BaseException | None,
        exc_tb: object,
    ) -> None:
        """
        Clean up resources when exiting the context.

        Args:
            exc_type: Exception type if an exception was raised
            exc_val: Exception value if an exception was raised
            exc_tb: Exception traceback if an exception was raised

        """
        # Clean up fixtures
        self.teardown_fixtures(self.generators)
        match self.scope:
            case "class":
                self.bench_instance.teardown_class()
            case "function":
                self.bench_instance.teardown_function()
            case "trial":
                self.bench_instance.teardown_trial()
            case _:
                scope_err = f"Invalid scope: {self.scope}"
                raise ValueError(scope_err)

    def setup_fixtures(
        self,
        fixtures: dict[str, object],
    ) -> tuple[list[types.GeneratorType], dict[str, object]]:
        """
        Set up fixtures for a given scope.

        Args:
            fixtures: The fixtures to set up

        Returns:
            Tuple of teardown generators and fixture values

        """
        teardown_generators = []
        values = {}

        # Process each fixture item
        try:
            for name, obj in fixtures.items():
                result = obj() if callable(obj) else obj
                # Check if the fixture function returned a generator (used yield)
                if isinstance(result, types.GeneratorType):
                    # Handle generator-based fixtures (with yield)
                    value = next(result)
                    teardown_generators.append(result)
                else:
                    # Handle return-based fixtures
                    value = result
                values[name] = value
        except (TypeError, ValueError, RuntimeError) as error:
            self.teardown_fixtures(teardown_generators)
            error_msg = f"Error setting up fixture '{name}'"
            raise RuntimeError(error_msg) from error

        return teardown_generators, values

    def teardown_fixtures(self, generators: list[types.GeneratorType]) -> None:
        """
        Tear down fixtures.

        Args:
            generators: List of generators to teardown

        """
        # Move try-except outside the loop to avoid performance overhead
        errors = []
        for gen in generators:
            try:
                next(gen)  # This should raise StopIteration
            except StopIteration:  # noqa: PERF203
                # Expected - generator is exhausted
                pass
            except (RuntimeError, ValueError) as e:
                # Log error but continue cleanup
                errors.append((gen, e))

        # Report errors after loop completes
        for gen, error in errors:
            logger.warning(
                "Error during teardown of fixture '%s': %s",
                gen,
                str(error),
            )

__enter__()

Set up resources for the scope.

Returns:

Type Description
ScopeManager

Self for context manager protocol

Source code in easybench/core.py
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
def __enter__(self) -> EasyBench.ScopeManager:
    """
    Set up resources for the scope.

    Returns:
        Self for context manager protocol

    """
    match self.scope:
        case "class":
            self.bench_instance.setup_class()
        case "function":
            self.bench_instance.setup_function()
        case "trial":
            self.bench_instance.setup_trial()
        case _:
            scope_err = f"Invalid scope: {self.scope}"
            raise ValueError(scope_err)

    # Set up fixtures
    fixtures = self.fixture_registry[self.scope]
    self.generators, _values = self.setup_fixtures(fixtures)
    self.values.update(_values)
    return self

__exit__(exc_type, exc_val, exc_tb)

Clean up resources when exiting the context.

Parameters:

Name Type Description Default
exc_type type[BaseException] | None

Exception type if an exception was raised

required
exc_val BaseException | None

Exception value if an exception was raised

required
exc_tb object

Exception traceback if an exception was raised

required
Source code in easybench/core.py
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
def __exit__(
    self,
    exc_type: type[BaseException] | None,
    exc_val: BaseException | None,
    exc_tb: object,
) -> None:
    """
    Clean up resources when exiting the context.

    Args:
        exc_type: Exception type if an exception was raised
        exc_val: Exception value if an exception was raised
        exc_tb: Exception traceback if an exception was raised

    """
    # Clean up fixtures
    self.teardown_fixtures(self.generators)
    match self.scope:
        case "class":
            self.bench_instance.teardown_class()
        case "function":
            self.bench_instance.teardown_function()
        case "trial":
            self.bench_instance.teardown_trial()
        case _:
            scope_err = f"Invalid scope: {self.scope}"
            raise ValueError(scope_err)

__init__(bench_instance, scope, values, fixture_registry)

Initialize scope manager.

Parameters:

Name Type Description Default
bench_instance EasyBench

The benchmark instance

required
scope ScopeType

The scope type (trial, function, class)

required
values dict[str, object]

Dictionary to store fixture values

required
fixture_registry FixtureRegistry

Registry containing fixtures

required
Source code in easybench/core.py
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
def __init__(
    self,
    bench_instance: EasyBench,
    scope: ScopeType,
    values: dict[str, object],
    fixture_registry: FixtureRegistry,
) -> None:
    """
    Initialize scope manager.

    Args:
        bench_instance: The benchmark instance
        scope: The scope type (trial, function, class)
        values: Dictionary to store fixture values
        fixture_registry: Registry containing fixtures

    """
    self.bench_instance = bench_instance
    self.scope = scope
    self.values = values
    self.fixture_registry = fixture_registry
    self.generators: list[types.GeneratorType] = []

setup_fixtures(fixtures)

Set up fixtures for a given scope.

Parameters:

Name Type Description Default
fixtures dict[str, object]

The fixtures to set up

required

Returns:

Type Description
tuple[list[GeneratorType], dict[str, object]]

Tuple of teardown generators and fixture values

Source code in easybench/core.py
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
def setup_fixtures(
    self,
    fixtures: dict[str, object],
) -> tuple[list[types.GeneratorType], dict[str, object]]:
    """
    Set up fixtures for a given scope.

    Args:
        fixtures: The fixtures to set up

    Returns:
        Tuple of teardown generators and fixture values

    """
    teardown_generators = []
    values = {}

    # Process each fixture item
    try:
        for name, obj in fixtures.items():
            result = obj() if callable(obj) else obj
            # Check if the fixture function returned a generator (used yield)
            if isinstance(result, types.GeneratorType):
                # Handle generator-based fixtures (with yield)
                value = next(result)
                teardown_generators.append(result)
            else:
                # Handle return-based fixtures
                value = result
            values[name] = value
    except (TypeError, ValueError, RuntimeError) as error:
        self.teardown_fixtures(teardown_generators)
        error_msg = f"Error setting up fixture '{name}'"
        raise RuntimeError(error_msg) from error

    return teardown_generators, values

teardown_fixtures(generators)

Tear down fixtures.

Parameters:

Name Type Description Default
generators list[GeneratorType]

List of generators to teardown

required
Source code in easybench/core.py
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
def teardown_fixtures(self, generators: list[types.GeneratorType]) -> None:
    """
    Tear down fixtures.

    Args:
        generators: List of generators to teardown

    """
    # Move try-except outside the loop to avoid performance overhead
    errors = []
    for gen in generators:
        try:
            next(gen)  # This should raise StopIteration
        except StopIteration:  # noqa: PERF203
            # Expected - generator is exhausted
            pass
        except (RuntimeError, ValueError) as e:
            # Log error but continue cleanup
            errors.append((gen, e))

    # Report errors after loop completes
    for gen, error in errors:
        logger.warning(
            "Error during teardown of fixture '%s': %s",
            gen,
            str(error),
        )

__init__(bench_config=None)

Initialize the benchmark class with optional configuration.

Parameters:

Name Type Description Default
bench_config BenchConfig | None

Configuration for the benchmark

None
Source code in easybench/core.py
729
730
731
732
733
734
735
736
737
738
739
740
741
def __init__(self, bench_config: BenchConfig | None = None) -> None:
    """
    Initialize the benchmark class with optional configuration.

    Args:
        bench_config: Configuration for the benchmark

    """
    # [IMPORTANT!] This init must be idempotent!
    if bench_config is not None:
        self.bench_config = bench_config
    else:
        self.bench_config = self.__class__.bench_config.model_copy(deep=True)

__init_subclass__(**kwargs)

Handle subclass initialization to ensure proper configuration.

Parameters:

Name Type Description Default
**kwargs object

Additional keyword arguments

{}
Source code in easybench/core.py
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
def __init_subclass__(cls, **kwargs: object) -> None:
    """
    Handle subclass initialization to ensure proper configuration.

    Args:
        **kwargs: Additional keyword arguments

    """
    super().__init_subclass__(**kwargs)

    if cls.__init__ is not EasyBench.__init__:
        original_init = cls.__init__

        def safe_init(self: EasyBench, *args: object, **kwargs: object) -> None:
            config = cast("BenchConfig", kwargs.get("bench_config"))
            EasyBench.__init__(
                self,
                bench_config=config,
            )
            original_init(self, *args, **kwargs)  # type: ignore [arg-type]

        cls.__init__ = safe_init  # type: ignore [method-assign]

bench(config=None, fixture_registry=None, **kwargs)

Run all benchmark methods for the specified number of trials.

Parameters:

Name Type Description Default
config PartialBenchConfig | None

Configuration for the benchmark, can be complete or partial

None
fixture_registry FixtureRegistry | None

Registry containing fixtures to use for the benchmarks

None
**kwargs object

Legacy keyword arguments for backward compatibility

{}

Returns:

Type Description
ResultsType

Dictionary mapping benchmark names to their results

Source code in easybench/core.py
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
def bench(
    self,
    config: PartialBenchConfig | None = None,
    fixture_registry: FixtureRegistry | None = None,
    **kwargs: object,
) -> ResultsType:
    """
    Run all benchmark methods for the specified number of trials.

    Args:
        config: Configuration for the benchmark, can be complete or partial
        fixture_registry: Registry containing fixtures to use for the benchmarks
        **kwargs: Legacy keyword arguments for backward compatibility

    Returns:
        Dictionary mapping benchmark names to their results

    """
    # Support legacy keyword arguments
    if kwargs and not config:
        try:
            config = PartialBenchConfig(**kwargs)  # type: ignore [arg-type]
        except TypeError as e:
            msg = f"Invalid keywords: {e}"
            raise ValueError(msg) from e
    elif kwargs:
        logger.warning(
            "Both config and keyword arguments provided. "
            "Using config and ignoring keyword arguments.",
        )

    # Initialize parameters
    complete_config, fixture_registry = self._initialize_bench_params(
        config,
        fixture_registry,
    )

    # Run all benchmarks
    raw_results = self._run_benchmarks(
        config=complete_config,
        fixture_registry=fixture_registry,
    )

    # Process results (apply outlier clipping if configured)
    processed_results = self.process_results(raw_results, complete_config)

    # Display results using reporters
    self.report_results(
        results=processed_results,
        config=complete_config,
    )

    # Return the processed results
    return processed_results

process_results(results, config)

Process benchmark results by applying transformations like outlier clipping.

Parameters:

Name Type Description Default
results ResultsType

Dictionary of raw benchmark results

required
config BenchConfig

BenchConfig

required

Returns:

Type Description
ResultsType

Processed results

Source code in easybench/core.py
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
def process_results(
    self,
    results: ResultsType,
    config: BenchConfig,
) -> ResultsType:
    """
    Process benchmark results by applying transformations like outlier clipping.

    Args:
        results: Dictionary of raw benchmark results
        config: BenchConfig

    Returns:
        Processed results

    """
    # If no clipping is needed, return the original results
    if config.clip_outliers is None or config.clip_outliers == 0.0:
        return results

    # Create a deep copy to avoid modifying the original data
    processed_results: ResultsType = {}
    clip_value = config.clip_outliers

    for method_name, data in results.items():
        processed_data = data.copy()

        # Process time measurements if present
        if "times" in data:
            processed_data["times"] = self._clip_outliers(data["times"], clip_value)

        # Process memory measurements if present
        if "memory" in data:
            processed_data["memory"] = self._clip_outliers(
                data["memory"],
                clip_value,
            )

        processed_results[method_name] = processed_data

    return processed_results

report_results(results, config)

Display benchmark results using configured reporters.

Parameters:

Name Type Description Default
results ResultsType

Dictionary mapping benchmark names to result data

required
config BenchConfig

Benchmark configuration

required
Source code in easybench/core.py
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
def report_results(
    self,
    results: ResultsType,
    config: BenchConfig,
) -> None:
    """
    Display benchmark results using configured reporters.

    Args:
        results: Dictionary mapping benchmark names to result data
        config: Benchmark configuration

    """
    if not results:
        logger.info("\nNo benchmark results to display.")
        return

    # Use each reporter to report the results
    for reporter in config.reporters:
        reporter.report(
            results=results,
            config=config,
        )

setup_class()

Set up resources before all benchmarks in the class.

Source code in easybench/core.py
767
768
def setup_class(self) -> None:
    """Set up resources before all benchmarks in the class."""

setup_function()

Set up resources before each benchmark function.

Source code in easybench/core.py
773
774
def setup_function(self) -> None:
    """Set up resources before each benchmark function."""

setup_trial()

Set up resources before each trial execution.

Source code in easybench/core.py
779
780
def setup_trial(self) -> None:
    """Set up resources before each trial execution."""

teardown_class()

Teardown method called once after all benchmarks in the class.

Source code in easybench/core.py
770
771
def teardown_class(self) -> None:
    """Teardown method called once after all benchmarks in the class."""

teardown_function()

Teardown method called after each benchmark function.

Source code in easybench/core.py
776
777
def teardown_function(self) -> None:
    """Teardown method called after each benchmark function."""

teardown_trial()

Teardown method called after each trial execution.

Source code in easybench/core.py
782
783
def teardown_trial(self) -> None:
    """Teardown method called after each trial execution."""

FunctionBench

Bases: EasyBench

Wrapper class to run function-based benchmarks.

Source code in easybench/core.py
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
class FunctionBench(EasyBench):
    """Wrapper class to run function-based benchmarks."""

    def __init__(
        self,
        func: Callable[..., object],
        func_name: str | None = None,
        bench_config: BenchConfig | None = None,
    ) -> None:
        """
        Initialize a function benchmark.

        Args:
            func: The function to benchmark
            func_name: Name to use for the function (defaults to func.__name__)
            bench_config: Configuration for the benchmark

        """
        super().__init__(bench_config=bench_config)

        if not callable(func):
            error_msg = "func must be callable"
            raise TypeError(error_msg)

        if func_name is None:
            func_name = getattr(func, "__name__", None)
            if func_name == "<lambda>" or func_name is None:
                error_msg = (
                    "func_name must be specified for lambda or unnamed functions"
                )
                raise ValueError(error_msg)

        # Store the original function and its name
        self._original_func = func
        self._func_name = func_name

        # Add the function directly as a method with bench_ prefix
        setattr(self, f"bench_{func_name}", func)

        # Copy the original function's signature and docstring to __call__
        trials_param = inspect.Parameter(
            "bench_trials",
            inspect.Parameter.KEYWORD_ONLY,
            default=1,
        )
        self.__signature__ = inspect.Signature(
            [
                *inspect.signature(func).parameters.values(),
                trials_param,
            ],
        )
        self.__doc__ = func.__doc__

    def _discover_benchmark_methods(
        self,
        config: BenchConfig,
    ) -> dict[str, Callable[..., object]]:
        """
        Find benchmark methods and remove 'bench_' prefix from names.

        Args:
            config: BenchConfig

        Returns:
            Dictionary mapping benchmark names (without 'bench_' prefix) to methods

        """
        # Get benchmark methods using parent implementation
        benchmark_methods = super()._discover_benchmark_methods(config)

        # Remove 'bench_' prefix from keys
        return {
            name.removeprefix("bench_"): method
            for name, method in benchmark_methods.items()
        }

    def __call__(
        self,
        *args: object,
        bench_trials: int = 1,
        **kwargs: object,
    ) -> object:
        """
        Call the benchmarked function with the given arguments.

        Args:
            *args: Positional arguments to pass to the function
            bench_trials: Number of benchmark trials to run
            **kwargs: Keyword arguments to pass to the function

        Returns:
            The return value of the benchmarked function

        """
        # Convert positional arguments to keyword arguments
        sig = inspect.signature(self._original_func)
        param_names = list(sig.parameters.keys())

        for i, arg in enumerate(args):
            if i < len(param_names):
                kwargs[param_names[i]] = arg

        # Register parameters as fixtures
        fixture_registry: FixtureRegistry = {"trial": {}, "function": {}, "class": {}}
        for name, value in kwargs.items():
            fixture_registry["trial"][name] = lambda v=value: v

        # Configure to show results and always return them
        original_return_output = self.bench_config.return_output

        self.bench_config.return_output = True

        # Run the benchmark and get results
        results = self.bench(trials=bench_trials, fixture_registry=fixture_registry)

        # Restore original config
        self.bench_config.return_output = original_return_output

        # Extract the return value from the results
        func_name = self._func_name
        if bench_trials > 0 and func_name in results and "output" in results[func_name]:
            return results[func_name]["output"][0]

        return None

__call__(*args, bench_trials=1, **kwargs)

Call the benchmarked function with the given arguments.

Parameters:

Name Type Description Default
*args object

Positional arguments to pass to the function

()
bench_trials int

Number of benchmark trials to run

1
**kwargs object

Keyword arguments to pass to the function

{}

Returns:

Type Description
object

The return value of the benchmarked function

Source code in easybench/core.py
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
def __call__(
    self,
    *args: object,
    bench_trials: int = 1,
    **kwargs: object,
) -> object:
    """
    Call the benchmarked function with the given arguments.

    Args:
        *args: Positional arguments to pass to the function
        bench_trials: Number of benchmark trials to run
        **kwargs: Keyword arguments to pass to the function

    Returns:
        The return value of the benchmarked function

    """
    # Convert positional arguments to keyword arguments
    sig = inspect.signature(self._original_func)
    param_names = list(sig.parameters.keys())

    for i, arg in enumerate(args):
        if i < len(param_names):
            kwargs[param_names[i]] = arg

    # Register parameters as fixtures
    fixture_registry: FixtureRegistry = {"trial": {}, "function": {}, "class": {}}
    for name, value in kwargs.items():
        fixture_registry["trial"][name] = lambda v=value: v

    # Configure to show results and always return them
    original_return_output = self.bench_config.return_output

    self.bench_config.return_output = True

    # Run the benchmark and get results
    results = self.bench(trials=bench_trials, fixture_registry=fixture_registry)

    # Restore original config
    self.bench_config.return_output = original_return_output

    # Extract the return value from the results
    func_name = self._func_name
    if bench_trials > 0 and func_name in results and "output" in results[func_name]:
        return results[func_name]["output"][0]

    return None

__init__(func, func_name=None, bench_config=None)

Initialize a function benchmark.

Parameters:

Name Type Description Default
func Callable[..., object]

The function to benchmark

required
func_name str | None

Name to use for the function (defaults to func.name)

None
bench_config BenchConfig | None

Configuration for the benchmark

None
Source code in easybench/core.py
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
def __init__(
    self,
    func: Callable[..., object],
    func_name: str | None = None,
    bench_config: BenchConfig | None = None,
) -> None:
    """
    Initialize a function benchmark.

    Args:
        func: The function to benchmark
        func_name: Name to use for the function (defaults to func.__name__)
        bench_config: Configuration for the benchmark

    """
    super().__init__(bench_config=bench_config)

    if not callable(func):
        error_msg = "func must be callable"
        raise TypeError(error_msg)

    if func_name is None:
        func_name = getattr(func, "__name__", None)
        if func_name == "<lambda>" or func_name is None:
            error_msg = (
                "func_name must be specified for lambda or unnamed functions"
            )
            raise ValueError(error_msg)

    # Store the original function and its name
    self._original_func = func
    self._func_name = func_name

    # Add the function directly as a method with bench_ prefix
    setattr(self, f"bench_{func_name}", func)

    # Copy the original function's signature and docstring to __call__
    trials_param = inspect.Parameter(
        "bench_trials",
        inspect.Parameter.KEYWORD_ONLY,
        default=1,
    )
    self.__signature__ = inspect.Signature(
        [
            *inspect.signature(func).parameters.values(),
            trials_param,
        ],
    )
    self.__doc__ = func.__doc__

Parametrize

Class for creating parametrized benchmarks in EasyBench classes.

This class provides functionality to parametrize benchmark functions with different sets of parameters for more comprehensive benchmarking.

Source code in easybench/core.py
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
class Parametrize:
    """
    Class for creating parametrized benchmarks in EasyBench classes.

    This class provides functionality to parametrize benchmark functions with
    different sets of parameters for more comprehensive benchmarking.
    """

    def __call__(
        self,
        params_list: Iterable[BenchParams],
    ) -> Callable:
        """
        Create a decorator for parametrized benchmarks in EasyBench classes.

        When multiple @parametrize decorators are applied to the same function,
        they behave as a Cartesian product of all parameter sets.

        Example:
            ```python
            params1 = BenchParams(name="small", params={"big_list": 1_000})
            params2 = BenchParams(name="big", params={"big_list": 100_000})

            class BenchList(EasyBench):
                # Pass a list of params:
                @parametrize([params1, params2])
                def bench_append(self, big_list):
                    big_list.append(0)
            ```

        Args:
            params_list: An iterable of BenchParams instances

        Returns:
            A decorator function that marks the method for parametrized benchmarking

        """
        # Convert all to a single list of BenchParams
        params = list(params_list)

        # Validate that all elements are BenchParams
        for param in params:
            if not isinstance(param, BenchParams):
                err = f"Expected BenchParams, got {type(param).__name__}"
                raise TypeError(err)

        def decorator(func: Callable) -> Callable:
            func = cast("ParametrizedFunction", func)

            # If the function already has params, calculate the Cartesian product
            if hasattr(func, "_bench_params"):
                existing_params = func._bench_params  # noqa: SLF001
                # Create cartesian product of existing params and new params
                new_params = [
                    existing * new_param
                    for existing in existing_params
                    for new_param in params
                ]
                func._bench_params = new_params  # noqa: SLF001
            else:
                func._bench_params = params  # noqa: SLF001

            return func

        return decorator

    def grid(
        self,
        params_lists: Iterable[Iterable[BenchParams]],
    ) -> Callable:
        """
        Create a decorator that applies a Cartesian product of multiple parameter lists.

        This is equivalent to stacking multiple @parametrize decorators,
        but with a cleaner syntax.

        Example:
            ```python
            sizes = [
                BenchParams(name="Small", params={"size": 100}),
                BenchParams(name="Large", params={"size": 10000}),
            ]
            ops = [
                BenchParams(name="Append", fn_params={"op": lambda x: x.append(0)}),
                BenchParams(name="Pop", fn_params={"op": lambda x: x.pop()}),
            ]

            @parametrize.grid([sizes, ops])
            def bench_operation(self, size, op):
                # Will run with all combinations:
                # (Small, Append), (Small, Pop), (Large, Append), (Large, Pop)
                lst = list(range(size))
                op(lst)
            ```

        Args:
            params_lists: An iterable of iterables of BenchParams to combine

        Returns:
            A decorator function that applies all parameter sets as a Cartesian product

        """

        def decorator(func: Callable) -> Callable:
            result = func

            for params in params_lists:
                result = self(params)(result)
            return result

        return decorator

__call__(params_list)

Create a decorator for parametrized benchmarks in EasyBench classes.

When multiple @parametrize decorators are applied to the same function, they behave as a Cartesian product of all parameter sets.

Example
params1 = BenchParams(name="small", params={"big_list": 1_000})
params2 = BenchParams(name="big", params={"big_list": 100_000})

class BenchList(EasyBench):
    # Pass a list of params:
    @parametrize([params1, params2])
    def bench_append(self, big_list):
        big_list.append(0)

Parameters:

Name Type Description Default
params_list Iterable[BenchParams]

An iterable of BenchParams instances

required

Returns:

Type Description
Callable

A decorator function that marks the method for parametrized benchmarking

Source code in easybench/core.py
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
def __call__(
    self,
    params_list: Iterable[BenchParams],
) -> Callable:
    """
    Create a decorator for parametrized benchmarks in EasyBench classes.

    When multiple @parametrize decorators are applied to the same function,
    they behave as a Cartesian product of all parameter sets.

    Example:
        ```python
        params1 = BenchParams(name="small", params={"big_list": 1_000})
        params2 = BenchParams(name="big", params={"big_list": 100_000})

        class BenchList(EasyBench):
            # Pass a list of params:
            @parametrize([params1, params2])
            def bench_append(self, big_list):
                big_list.append(0)
        ```

    Args:
        params_list: An iterable of BenchParams instances

    Returns:
        A decorator function that marks the method for parametrized benchmarking

    """
    # Convert all to a single list of BenchParams
    params = list(params_list)

    # Validate that all elements are BenchParams
    for param in params:
        if not isinstance(param, BenchParams):
            err = f"Expected BenchParams, got {type(param).__name__}"
            raise TypeError(err)

    def decorator(func: Callable) -> Callable:
        func = cast("ParametrizedFunction", func)

        # If the function already has params, calculate the Cartesian product
        if hasattr(func, "_bench_params"):
            existing_params = func._bench_params  # noqa: SLF001
            # Create cartesian product of existing params and new params
            new_params = [
                existing * new_param
                for existing in existing_params
                for new_param in params
            ]
            func._bench_params = new_params  # noqa: SLF001
        else:
            func._bench_params = params  # noqa: SLF001

        return func

    return decorator

grid(params_lists)

Create a decorator that applies a Cartesian product of multiple parameter lists.

This is equivalent to stacking multiple @parametrize decorators, but with a cleaner syntax.

Example
sizes = [
    BenchParams(name="Small", params={"size": 100}),
    BenchParams(name="Large", params={"size": 10000}),
]
ops = [
    BenchParams(name="Append", fn_params={"op": lambda x: x.append(0)}),
    BenchParams(name="Pop", fn_params={"op": lambda x: x.pop()}),
]

@parametrize.grid([sizes, ops])
def bench_operation(self, size, op):
    # Will run with all combinations:
    # (Small, Append), (Small, Pop), (Large, Append), (Large, Pop)
    lst = list(range(size))
    op(lst)

Parameters:

Name Type Description Default
params_lists Iterable[Iterable[BenchParams]]

An iterable of iterables of BenchParams to combine

required

Returns:

Type Description
Callable

A decorator function that applies all parameter sets as a Cartesian product

Source code in easybench/core.py
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
def grid(
    self,
    params_lists: Iterable[Iterable[BenchParams]],
) -> Callable:
    """
    Create a decorator that applies a Cartesian product of multiple parameter lists.

    This is equivalent to stacking multiple @parametrize decorators,
    but with a cleaner syntax.

    Example:
        ```python
        sizes = [
            BenchParams(name="Small", params={"size": 100}),
            BenchParams(name="Large", params={"size": 10000}),
        ]
        ops = [
            BenchParams(name="Append", fn_params={"op": lambda x: x.append(0)}),
            BenchParams(name="Pop", fn_params={"op": lambda x: x.pop()}),
        ]

        @parametrize.grid([sizes, ops])
        def bench_operation(self, size, op):
            # Will run with all combinations:
            # (Small, Append), (Small, Pop), (Large, Append), (Large, Pop)
            lst = list(range(size))
            op(lst)
        ```

    Args:
        params_lists: An iterable of iterables of BenchParams to combine

    Returns:
        A decorator function that applies all parameter sets as a Cartesian product

    """

    def decorator(func: Callable) -> Callable:
        result = func

        for params in params_lists:
            result = self(params)(result)
        return result

    return decorator

ParametrizedFunction

Bases: Protocol[P, R_co]

Function with _bench_params.

Source code in easybench/core.py
203
204
205
206
207
208
209
210
class ParametrizedFunction(Protocol[P, R_co]):
    """Function with _bench_params."""

    def __call__(self, *args: P.args, **kwds: P.kwargs) -> R_co:
        """Call method."""
        ...

    _bench_params: Iterable[BenchParams]

__call__(*args, **kwds)

Call method.

Source code in easybench/core.py
206
207
208
def __call__(self, *args: P.args, **kwds: P.kwargs) -> R_co:
    """Call method."""
    ...

PartialBenchConfig

Bases: BaseModel

Partial configuration for EasyBench with optional values.

Source code in easybench/core.py
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
class PartialBenchConfig(BaseModel):
    """Partial configuration for EasyBench with optional values."""

    model_config = {
        "arbitrary_types_allowed": True,
        "extra": "forbid",
    }

    trials: int | None = None
    loops_per_trial: int | None = None
    warmups: int | None = None
    sort_by: SortType | None = None
    reverse: bool | None = None
    memory: bool | MemoryUnit | str | None = None
    time: bool | TimeUnit | str | None = None
    color: bool | None = None
    show_output: bool | None = None
    return_output: bool | None = None
    reporters: list[Reporter] | None = None
    progress: bool | Callable | None = None
    include: str | None = None
    exclude: str | None = None
    clip_outliers: float | None = None

    @model_validator(mode="after")
    def validate_time_and_memory(self) -> PartialBenchConfig:
        """Validate that at least one of time or memory is enabled."""
        # Check if both time and memory are explicitly set to False
        if self.time is False and self.memory is False:
            msg = "At least one of 'time' or 'memory' must be enabled"
            raise ValueError(msg)
        return self

    def merge_with(self, config: BenchConfig) -> BenchConfig:
        """
        Merge partial configuration with a complete configuration.

        Args:
            config: Complete configuration to use as base

        Returns:
            A complete BenchConfig with non-None values from this partial config

        """
        result = config.model_copy(deep=True)

        # Update non-None fields from partial config
        for field_name, field_value in self.model_dump().items():
            if field_value is not None:
                setattr(result, field_name, field_value)

        return result

    @field_validator("reporters", mode="before")
    @classmethod
    def validate_and_convert_reporters(cls, v: list | None) -> list[Reporter] | None:
        """Validate and convert reporters."""
        if v is None:
            return None
        if not isinstance(v, list):
            msg = "reporters must be a list"
            raise TypeError(msg)

        converted_reporters: list[Reporter] = []
        for item in v:
            if isinstance(item, str):
                # Convert string to reporter
                reporter = get_reporter(item)
                converted_reporters.append(reporter)
            elif (
                isinstance(item, (tuple, list))
                and isinstance(item[0], str)
                and isinstance(item[1], dict)
            ):
                reporter = get_reporter(item[0], item[1])
                converted_reporters.append(reporter)
            elif isinstance(item, Reporter):
                # すでにReporterオブジェクトの場合はそのまま
                converted_reporters.append(item)
            else:
                msg = f"Invalid reporter type: {type(item)}"
                raise TypeError(msg)

        return converted_reporters

    @field_validator("loops_per_trial", mode="before")
    @classmethod
    def validate_loops_per_trial(cls, v: int | None) -> int | None:
        """Validate loops_per_trial."""
        if v is not None and v < 1:
            msg = "loops_per_trial must be at least 1"
            raise ValueError(msg)
        return v

    @field_validator("warmups", mode="before")
    @classmethod
    def validate_warmups(cls, v: int | None) -> int | None:
        """Validate warmups."""
        if v is not None and v < 0:
            msg = "warmups must be at least 0"
            raise ValueError(msg)
        return v

    @field_validator("clip_outliers", mode="before")
    @classmethod
    def validate_clip_outliers(cls, v: float | None) -> float | None:
        """Validate clip_outliers is in valid range."""
        if v is not None and not (0.0 <= v < 1.0):
            msg = "clip_outliers must be between 0.0 and 1.0"
            raise ValueError(msg)
        return v

merge_with(config)

Merge partial configuration with a complete configuration.

Parameters:

Name Type Description Default
config BenchConfig

Complete configuration to use as base

required

Returns:

Type Description
BenchConfig

A complete BenchConfig with non-None values from this partial config

Source code in easybench/core.py
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
def merge_with(self, config: BenchConfig) -> BenchConfig:
    """
    Merge partial configuration with a complete configuration.

    Args:
        config: Complete configuration to use as base

    Returns:
        A complete BenchConfig with non-None values from this partial config

    """
    result = config.model_copy(deep=True)

    # Update non-None fields from partial config
    for field_name, field_value in self.model_dump().items():
        if field_value is not None:
            setattr(result, field_name, field_value)

    return result

validate_and_convert_reporters(v) classmethod

Validate and convert reporters.

Source code in easybench/core.py
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
@field_validator("reporters", mode="before")
@classmethod
def validate_and_convert_reporters(cls, v: list | None) -> list[Reporter] | None:
    """Validate and convert reporters."""
    if v is None:
        return None
    if not isinstance(v, list):
        msg = "reporters must be a list"
        raise TypeError(msg)

    converted_reporters: list[Reporter] = []
    for item in v:
        if isinstance(item, str):
            # Convert string to reporter
            reporter = get_reporter(item)
            converted_reporters.append(reporter)
        elif (
            isinstance(item, (tuple, list))
            and isinstance(item[0], str)
            and isinstance(item[1], dict)
        ):
            reporter = get_reporter(item[0], item[1])
            converted_reporters.append(reporter)
        elif isinstance(item, Reporter):
            # すでにReporterオブジェクトの場合はそのまま
            converted_reporters.append(item)
        else:
            msg = f"Invalid reporter type: {type(item)}"
            raise TypeError(msg)

    return converted_reporters

validate_clip_outliers(v) classmethod

Validate clip_outliers is in valid range.

Source code in easybench/core.py
326
327
328
329
330
331
332
333
@field_validator("clip_outliers", mode="before")
@classmethod
def validate_clip_outliers(cls, v: float | None) -> float | None:
    """Validate clip_outliers is in valid range."""
    if v is not None and not (0.0 <= v < 1.0):
        msg = "clip_outliers must be between 0.0 and 1.0"
        raise ValueError(msg)
    return v

validate_loops_per_trial(v) classmethod

Validate loops_per_trial.

Source code in easybench/core.py
308
309
310
311
312
313
314
315
@field_validator("loops_per_trial", mode="before")
@classmethod
def validate_loops_per_trial(cls, v: int | None) -> int | None:
    """Validate loops_per_trial."""
    if v is not None and v < 1:
        msg = "loops_per_trial must be at least 1"
        raise ValueError(msg)
    return v

validate_time_and_memory()

Validate that at least one of time or memory is enabled.

Source code in easybench/core.py
247
248
249
250
251
252
253
254
@model_validator(mode="after")
def validate_time_and_memory(self) -> PartialBenchConfig:
    """Validate that at least one of time or memory is enabled."""
    # Check if both time and memory are explicitly set to False
    if self.time is False and self.memory is False:
        msg = "At least one of 'time' or 'memory' must be enabled"
        raise ValueError(msg)
    return self

validate_warmups(v) classmethod

Validate warmups.

Source code in easybench/core.py
317
318
319
320
321
322
323
324
@field_validator("warmups", mode="before")
@classmethod
def validate_warmups(cls, v: int | None) -> int | None:
    """Validate warmups."""
    if v is not None and v < 0:
        msg = "warmups must be at least 0"
        raise ValueError(msg)
    return v

customize(*, loops_per_trial=None, name=None)

Create a decorator for customizing benchmark settings for specific methods.

Example
class BenchList(EasyBench):
    @customize(loops_per_trial=1000, name="Fast append operation")
    def bench_append(self):
        # This method uses 1000 loops per trial
        # and displays as "Fast append operation"
        pass

Parameters:

Name Type Description Default
loops_per_trial int | None

Number of loops per trial for this specific benchmark method

None
name str | None

Custom display name for the benchmark in results

None

Returns:

Type Description
Callable

A decorator function that applies custom benchmark settings to the method

Source code in easybench/core.py
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
def customize(
    *,
    loops_per_trial: int | None = None,
    name: str | None = None,
) -> Callable:
    """
    Create a decorator for customizing benchmark settings for specific methods.

    Example:
        ```python
        class BenchList(EasyBench):
            @customize(loops_per_trial=1000, name="Fast append operation")
            def bench_append(self):
                # This method uses 1000 loops per trial
                # and displays as "Fast append operation"
                pass
        ```

    Args:
        loops_per_trial: Number of loops per trial for this specific benchmark method
        name: Custom display name for the benchmark in results

    Returns:
        A decorator function that applies custom benchmark settings to the method

    """

    def decorator(func: Callable) -> Callable:
        func = cast("CustomizedFunction", func)
        func._bench_customize = {  # noqa: SLF001
            "loops_per_trial": loops_per_trial,
            "name": name,
        }
        return func

    return decorator

ensure_full_config(config, base_config)

Ensure we have a full BenchConfig.

This allows both BenchConfig and PartialBenchConfig to be passed to methods that require configuration.

Parameters:

Name Type Description Default
config PartialBenchConfig | None

The configuration to process

required
base_config BenchConfig

The base configuration to use if config is None or partial

required

Returns:

Type Description
BenchConfig

A complete BenchConfig instance

Source code in easybench/core.py
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
def ensure_full_config(
    config: PartialBenchConfig | None,
    base_config: BenchConfig,
) -> BenchConfig:
    """
    Ensure we have a full BenchConfig.

    This allows both BenchConfig and PartialBenchConfig to be passed to methods
    that require configuration.

    Args:
        config: The configuration to process
        base_config: The base configuration to use if config is None or partial

    Returns:
        A complete BenchConfig instance

    """
    if config is None:
        return base_config.model_copy(deep=True)

    if isinstance(config, BenchConfig):
        return config

    # Must be a PartialBenchConfig
    return config.merge_with(base_config)

fixture(scope='trial', fixture_registry=None)

Define a fixture function.

Parameters:

Name Type Description Default
scope ScopeType

Lifecycle scope of the fixture. Valid values are: "trial": Run once per trial (default) "function": Run once per function "class": Run once per class

'trial'
fixture_registry FixtureRegistry | None

Registry to store fixtures in

None

Returns:

Type Description
Callable[[Callable[..., T]], Callable[..., T]]

Decorator function that registers the fixture

Source code in easybench/core.py
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
def fixture(
    scope: ScopeType = "trial",
    fixture_registry: FixtureRegistry | None = None,
) -> Callable[[Callable[..., T]], Callable[..., T]]:
    """
    Define a fixture function.

    Args:
        scope: Lifecycle scope of the fixture. Valid values are:
               "trial": Run once per trial (default)
               "function": Run once per function
               "class": Run once per class
        fixture_registry: Registry to store fixtures in

    Returns:
        Decorator function that registers the fixture

    """
    if fixture_registry is None:
        fixture_registry = _fixture_registry

    def decorator(func: Callable[..., T]) -> Callable[..., T]:
        if scope not in fixture_registry:
            fixture_registry[scope] = {}
        fixture_registry[scope][func.__name__] = func
        return func

    return decorator

get_reporter(name, kwargs=None)

Convert string to reporter.

Source code in easybench/core.py
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
def get_reporter(name: str, kwargs: dict | None = None) -> Reporter:
    """Convert string to reporter."""
    kwargs = kwargs or {}
    reporter_name = name.lower()

    # Basic reporter
    if reporter_name in _BASIC_REPORTERS:
        return _get_basic_reporter(reporter_name, kwargs)

    # File reporter
    if name.endswith((".csv", ".json")):
        return FileReporter(name, **kwargs)

    # Visualization reporter
    if reporter_name in _VISUALIZATION_REPORTERS:
        return _get_visualization_reporter(reporter_name, kwargs)

    # Custom reporter
    if name in _custom_reporters_dict:
        return _custom_reporters_dict[name](**kwargs)

    # Unknown reporter
    err = f"Unknown reporter type: {name}"
    raise ValueError(err)

measure_execution(execution_func, *, loops=1, measure_memory=False)

Measure execution time and memory usage of a callable function.

Parameters:

Name Type Description Default
execution_func Callable[[], T]

Function to execute

required
measure_memory bool

Whether to measure memory usage

False
loops int

Number of loops to run

1

Returns:

Type Description
tuple[float, float | None, T | None]

Tuple of (execution_time, memory_usage, result)

Source code in easybench/core.py
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
def measure_execution(
    execution_func: Callable[[], T],
    *,
    loops: int = 1,
    measure_memory: bool = False,
) -> tuple[float, float | None, T | None]:
    """
    Measure execution time and memory usage of a callable function.

    Args:
        execution_func: Function to execute
        measure_memory: Whether to measure memory usage
        loops: Number of loops to run

    Returns:
        Tuple of (execution_time, memory_usage, result)

    """
    # Reset tracemalloc
    if measure_memory and tracemalloc.is_tracing():
        tracemalloc.stop()

    # Disable garbage collection during measurement
    gcold = gc.isenabled()
    gc.disable()

    result = None
    memory_usage = None

    try:
        # Start memory tracking if needed
        if measure_memory:
            tracemalloc.start()
            before_current, _ = tracemalloc.get_traced_memory()

        # Measure execution time
        start_time = time.perf_counter()

        # Execute the function multiple times
        for i in range(loops):
            if i == 0:
                result = execution_func()
            else:
                execution_func()

        end_time = time.perf_counter()
        execution_time = (end_time - start_time) / loops

        # Measure memory if requested
        if measure_memory:
            _, after_peak = tracemalloc.get_traced_memory()
            memory_usage = after_peak - before_current

        return execution_time, memory_usage, result

    finally:
        # Clean up
        if measure_memory and tracemalloc.is_tracing():
            tracemalloc.stop()
        if gcold:
            gc.enable()

set_reporter(name, reporter_generator=None)

Register a custom reporter.

Can be used both as a normal function and as a decorator.

Examples:

set_reporter( "lineplot-log", lambda: PlotReporter(LinePlotFormatter(log_scale=True)), )

@set_reporter("lineplot-log") def custom_reporter_generator(): return PlotReporter(LinePlotFormatter(log_scale=True))

Source code in easybench/core.py
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
def set_reporter(
    name: str,
    reporter_generator: Callable[..., Reporter] | None = None,
) -> Callable | None:
    """
    Register a custom reporter.

    Can be used both as a normal function and as a decorator.

    Examples:
        set_reporter(
            "lineplot-log", lambda: PlotReporter(LinePlotFormatter(log_scale=True)),
        )

        @set_reporter("lineplot-log")
        def custom_reporter_generator():
            return PlotReporter(LinePlotFormatter(log_scale=True))

    """

    def decorator(func: Callable) -> Callable:
        _custom_reporters_dict[name] = func
        return func

    if reporter_generator is None:
        return decorator

    _custom_reporters_dict[name] = reporter_generator
    return None