Skip to content

Commit

Permalink
Reduce the memeory needs of the bench :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Sep 12, 2024
1 parent 03216a0 commit 51cca3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bench/fill_special.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
import blosc2

# Dimensions, type and persistence properties for the arrays
nelem = 2_000_000_000
nelem = 1_00_000_000
dtype = np.dtype(np.float64)
print(f"Filling a SChunk with {nelem / 1e9} Gelements of {dtype=}")
print(f"Filling a SChunk with {nelem / 1e6} Melements of {dtype=}")

persistent = bool(sys.argv[1]) if len(sys.argv) > 1 else False
if persistent:
Expand Down

0 comments on commit 51cca3a

Please sign in to comment.