fhelium.benchmarks.cli
Helpers used by the fhelium benchmark CLI.
load_benchmark_file
function View source
python
def load_benchmark_file(path: Path, registry: BenchmarkRegistry) -> None: ...1
Load custom registrations from a Python file.
A file may call register_benchmark at import time, or expose a register_benchmarks(registry) function.
parse_overrides
function View source
python
def parse_overrides(values: tuple[str, ...]) -> dict[str, object]: ...1