This repository was archived by the owner on Mar 31, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
tests/perf/microbenchmarks Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def publish_benchmark_extra_info(
4242 benchmark .extra_info ["throughput_MiB_s_mean" ] = mean_throughput
4343 benchmark .extra_info ["throughput_MiB_s_median" ] = median_throughput
4444
45- print (f "\n Throughput Statistics (MiB/s):" )
45+ print ("\n Throughput Statistics (MiB/s):" )
4646 print (f" Min: { min_throughput :.2f} (from max time)" )
4747 print (f" Max: { max_throughput :.2f} (from min time)" )
4848 print (f" Mean: { mean_throughput :.2f} (approx, from mean time)" )
@@ -60,7 +60,7 @@ def publish_benchmark_extra_info(
6060 benchmark .extra_info ["true_throughput_MiB_s_mean" ] = true_mean_throughput
6161 benchmark .extra_info ["true_throughput_MiB_s_median" ] = true_median_throughput
6262
63- print (f "\n Throughput Statistics from true_times (MiB/s):" )
63+ print ("\n Throughput Statistics from true_times (MiB/s):" )
6464 print (f" Min: { true_min_throughput :.2f} " )
6565 print (f" Max: { true_max_throughput :.2f} " )
6666 print (f" Mean: { true_mean_throughput :.2f} " )
Original file line number Diff line number Diff line change 77import os
88import time
99import asyncio
10- import math
1110from concurrent .futures import ThreadPoolExecutor
1211import multiprocessing
1312import logging
You can’t perform that action at this time.
0 commit comments