Register the throughput benchmark if not already present.
Source code in src/openjarvis/bench/throughput.py
| def ensure_registered() -> None:
"""Register the throughput benchmark if not already present."""
if not BenchmarkRegistry.contains("throughput"):
BenchmarkRegistry.register_value("throughput", ThroughputBenchmark)
|