(benchmark_file: str)
| 214 | |
| 215 | |
| 216 | def _resolve_benchmark_file(benchmark_file: str) -> Path: |
| 217 | resolved_path = Path(benchmark_file) |
| 218 | if resolved_path.exists(): |
| 219 | return resolved_path |
| 220 | raise ValueError(f"Benchmark file does not exist: {resolved_path}") |
| 221 | |
| 222 | |
| 223 | def _default_experiment_output_path() -> Path: |
no outgoing calls
no test coverage detected