Skip to content

Commit b9aea37

Browse files
committed
Rename output csv filename
1 parent c5eb9be commit b9aea37

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sharktuner/dispatch_tuner/dispatch_tuner.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@ def main() -> None:
160160
print("Check the summary in:")
161161
print(summary_log_file.resolve())
162162

163-
output_csv_name = f"tuning_{args.dispatch_file.stem}.csv"
164-
csv_path = Path(path_config.base_dir / output_csv_name)
163+
output_csv_name = f"{args.dispatch_file.stem}_candidate_analysis.csv"
164+
csv_path = Path(path_config.base_dir) / output_csv_name
165+
165166
libtuner.candidate_ordering.export_record_to_csv(
166167
dispatch_tuner.tuning_records, csv_path
167168
)

0 commit comments

Comments
 (0)