tests, configs, util, mem, python, systemc: Change base 10 units to base 2 (#1605)
This commit changes metric units (e.g. kB, MB, and GB) to binary units (KiB, MiB, GiB) in various files. This PR covers files that were missed by a previous PR that also made these changes.
This commit is contained in:
committed by
GitHub
parent
d57208c615
commit
c10feed524
@@ -38,7 +38,7 @@ def _md5_update_from_file(
|
||||
if filename.stat().st_size < 1024 * 1024 * 100:
|
||||
from ..utils.progress_bar import FakeTQDM
|
||||
|
||||
# if the file is less than 100MB, no need to show a progress bar.
|
||||
# if the file is less than 100MiB, no need to show a progress bar.
|
||||
tqdm = FakeTQDM()
|
||||
else:
|
||||
from ..utils.progress_bar import tqdm
|
||||
|
||||
Reference in New Issue
Block a user