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 8a60a13 commit 7e26fbaCopy full SHA for 7e26fba
codeflash/optimization/optimizer.py
@@ -102,7 +102,8 @@ 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(f"Running benchmarks in {self.args.benchmarks_root}", transient=True):
+ with progress_bar():
106
+ logger.info(f"Running benchmarks in {self.args.benchmarks_root}")
107
# Insert decorator
108
file_path_to_source_code = defaultdict(str)
109
for file in file_to_funcs_to_optimize:
0 commit comments