File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
vtr_flow/scripts/tuning_runs Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11prettytable
22lxml
33psutil
4-
4+ pandas
5+ numpy
6+ scipy
57# Python linter and formatter
68click == 8.0.2 # Our version of black needs an older version of click (https://stackoverflow.com/questions/71673404/importerror-cannot-import-name-unicodefun-from-click)
79black == 21.4b0
810pylint == 2.7.4
911
1012# Surelog
11- orderedmultidict
13+ orderedmultidict
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ def parse_results(input_path):
5959 full_res_csv_path = os .path .join (largest_run_path , "full_res.csv" )
6060
6161 if not os .path .exists (os .path .join (largest_run_path , "parse_results.txt" )):
62- print (f" parse_results.txt not found." )
62+ print ("File parse_results.txt not found." )
6363 sys .exit (1 )
6464
6565 # Read the parse_results.txt file and write to full_res.csv
@@ -94,16 +94,16 @@ def parse_results(input_path):
9494
9595 # Generate avg_seed.csv if --seed column exists
9696 generate_avg_seed_csv (full_res_csv_path , largest_run_path )
97- print (f "Generated average seed results" )
97+ print ("Generated average seed results" )
9898
9999 # Generate gmean_res.csv
100100 generate_geomean_res_csv (
101101 os .path .join (largest_run_path , "avg_seed.csv" ), largest_run_path
102102 )
103- print (f "Generated geometric average results over all the circuits" )
103+ print ("Generated geometric average results over all the circuits" )
104104
105105 generate_xlsx (largest_run_path )
106- print (f "Generated xlsx that merges all the result csv files" )
106+ print ("Generated xlsx that merges all the result csv files" )
107107
108108
109109def generate_xlsx (largest_run_path ):
You can’t perform that action at this time.
0 commit comments