Skip to content

Commit

Permalink
Fix ratio of local/IDR timing
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Jan 18, 2024
1 parent 137774a commit 1f4c0ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_pixels.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def check_image(idr_conn, image, max_planes, check_timing=False):
planes_time_idr = datetime.now() - start_idr

if check_timing:
ratio = planes_time_local.microseconds / planes_time_idr.microseconds
ratio = planes_time_local / planes_time_idr
log("Ratio of local/IDR timing for %s planes is %s Image: %s" % (len(zctList), ratio, image.id))
log("Local took %s, IDR took %s" % (planes_time_local, planes_time_idr))

Expand Down

0 comments on commit 1f4c0ba

Please sign in to comment.