Skip to content

Commit dc81593

Browse files
committed
We are in 2025, so raise max threads to 64
1 parent 0e46b2e commit dc81593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blosc2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class Tuner(Enum):
195195
"""Number of threads to be used in compression/decompression.
196196
"""
197197
# Protection against too many threads
198-
nthreads = min(nthreads, 32)
198+
nthreads = min(nthreads, 64)
199199
# Experiments say that, when using a large number of threads, it is better to not use them all
200200
if nthreads > 16:
201201
nthreads -= nthreads // 8

0 commit comments

Comments
 (0)