We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e26fba commit 37cff02Copy full SHA for 37cff02
codeflash/optimization/optimizer.py
@@ -102,7 +102,7 @@ def run(self) -> None:
102
function_benchmark_timings: dict[str, dict[BenchmarkKey, int]] = {}
103
total_benchmark_timings: dict[BenchmarkKey, int] = {}
104
if self.args.benchmark and num_optimizable_functions > 0:
105
- with progress_bar():
+ with progress_bar(f"Running benchmarks in {self.args.benchmarks_root}",transient=True):
106
logger.info(f"Running benchmarks in {self.args.benchmarks_root}")
107
# Insert decorator
108
file_path_to_source_code = defaultdict(str)
0 commit comments