Skip to content

Commit 544977d

Browse files
committed
setup link
Signed-off-by: Yang Wang <[email protected]>
1 parent b45d737 commit 544977d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.ci/scripts/benchmark_tooling/analyze_benchmark_stability.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ def is_matching_dataset(primary_sheet, reference_sheet):
6666

6767

6868
def analyze_latency_stability( # noqa: C901
69-
primary_file, reference_file=None, output_dir="stability_analysis_results",debug=False
69+
primary_file,
70+
reference_file=None,
71+
output_dir="stability_analysis_results",
72+
debug=False,
7073
):
7174
print(f"Analyzing latency stability from primary file: {primary_file}")
7275
if reference_file:
@@ -1551,16 +1554,18 @@ def main():
15511554
)
15521555

15531556
parser.add_argument(
1554-
"--debug",
1555-
action="store_true",
1556-
help="Enable debug mode (default: False)",
1557+
"--debug",
1558+
action="store_true",
1559+
help="Enable debug mode (default: False)",
15571560
)
15581561

15591562
# Parse arguments
15601563
args = parser.parse_args()
15611564

15621565
# Run analysis
1563-
analyze_latency_stability(args.primary_file, args.reference_file, args.output_dir, args.debug)
1566+
analyze_latency_stability(
1567+
args.primary_file, args.reference_file, args.output_dir, args.debug
1568+
)
15641569

15651570

15661571
if __name__ == "__main__":

0 commit comments

Comments
 (0)