Skip to content

Commit e802f80

Browse files
authored
Fix progress bar again (flagos-ai#2374)
1 parent 05b52ec commit e802f80

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/run_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def run_accuracy(gpu_id, start, index, count):
302302
prog = "█" * n + " " * (10 - n)
303303
pinfo(
304304
f"[GPU {gpu_id:2d}][{start + index:3d}/{total:3d}][{prog}] "
305-
"Running accuracy tests for '{op}'"
305+
f"Running accuracy tests for '{op}'"
306306
)
307307
env = get_env(str(gpu_id))
308308

@@ -423,7 +423,7 @@ def run_benchmark(gpu_id, start, index, count):
423423
prog = "█" * n + " " * (10 - n)
424424
pinfo(
425425
f"[GPU {gpu_id:2d}][{start + index:3d}/{total:3d}][{prog}] "
426-
"Running perf benchmark for '{op}'"
426+
f"Running perf benchmark for '{op}'"
427427
)
428428

429429
env = get_env(str(gpu_id))

0 commit comments

Comments
 (0)