Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquin Anton Guirao <[email protected]>
  • Loading branch information
jantonguirao committed Nov 27, 2024
1 parent 39e949d commit 22649f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion internal_tools/hw_decoder_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,10 @@ def vit_pipeline(is_training=False, image_shape=(384, 384, 3), num_classes=1000)
min_t = min(execution_times)
max_t = max(execution_times)
print(
f"Iteration {iteration + 1}/{test_iterations} - Throughput: {throughput:.2f} frames/sec (mean={mean_t:.6f}sec, median={median_t:.6f}sec, min={min_t:.6f}sec, max={max_t:.6f}sec)"
f"Iteration {iteration + 1}/{test_iterations} - "
+ f"Throughput: {throughput:.2f} frames/sec "
+ f"(mean={mean_t:.6f}sec, median={median_t:.6f}sec, "
+ f"min={min_t:.6f}sec, max={max_t:.6f}sec)"
)

end_time = time.perf_counter()
Expand Down

0 comments on commit 22649f6

Please sign in to comment.