File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
.ci/scripts/benchmark_tooling Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ def analyze_latency_stability( # noqa: C901
71
71
reference_file = None ,
72
72
output_dir = "stability_analysis_results" ,
73
73
verbose_level = 0 ,
74
- debug = False ,
75
74
):
76
75
print_section_header (f"Analyzing Stability Against Metric '{ target_metric } '" )
77
76
print (f"Primary dataset: { primary_file } " )
@@ -87,8 +86,8 @@ def analyze_latency_stability( # noqa: C901
87
86
primary_datasets = {}
88
87
documents = read_excel_with_json_header (primary_file )
89
88
90
- if debug :
91
- print (f"[Debug Mode] Printing documents: { documents } " )
89
+ if verbose_level > 2 :
90
+ print (f"Printing documents: { documents } " )
92
91
93
92
for document in documents :
94
93
sheetName = document .get ("sheetName" , None )
@@ -1530,12 +1529,6 @@ def main():
1530
1529
help = "Directory to save analysis results (default: stability_analysis_results)" ,
1531
1530
)
1532
1531
1533
- parser .add_argument (
1534
- "--debug" ,
1535
- action = "store_true" ,
1536
- help = "Enable debug mode (default: False)" ,
1537
- )
1538
-
1539
1532
parser .add_argument (
1540
1533
"--verbose-level" ,
1541
1534
type = int ,
@@ -1553,7 +1546,6 @@ def main():
1553
1546
args .reference_file ,
1554
1547
args .output_dir ,
1555
1548
args .verbose_level ,
1556
- args .debug ,
1557
1549
)
1558
1550
1559
1551
You can’t perform that action at this time.
0 commit comments