Example (this happens in many places):
|
metric = metric + f"[METRIC] Eval Throughput (MB/second): {np.mean(eval_throughput)*self.record_size/1024/1024:.6f} ({np.std(eval_throughput)*self.record_size/1024/1024:.6f})\n" |
Using power of 2 division (MiB), but stating the result in power of 10 terms (MB).
Refer to https://physics.nist.gov/cuu/Units/binary.html for more details.
Example (this happens in many places):
dlio_benchmark/dlio_benchmark/utils/statscounter.py
Line 223 in 28aaf34
Using power of 2 division (MiB), but stating the result in power of 10 terms (MB).
Refer to https://physics.nist.gov/cuu/Units/binary.html for more details.