Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions codeflash/optimization/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ def run(self) -> None:
total_benchmark_timings: dict[BenchmarkKey, int] = {}
if self.args.benchmark and num_optimizable_functions > 0:
with progress_bar(f"Running benchmarks in {self.args.benchmarks_root}", transient=True):
logger.info(f"Running benchmarks in {self.args.benchmarks_root}")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks like a case where the above message prints in interactive console mode but doesn't in non-interactice consoles?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am closing this issue as this can be solved in Pycharm by selecting 'Emulate terminal in output console' in the run configuration

# Insert decorator
file_path_to_source_code = defaultdict(str)
for file in file_to_funcs_to_optimize:
Expand Down
Loading