We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ef89b commit 20dd6a5Copy full SHA for 20dd6a5
docs/release.rst
@@ -11,6 +11,8 @@ Release notes
11
section on :ref:`tutorial_compression` for an example.
12
* When using the Blosc compressor, the default internal compression library
13
is now 'lz4'.
14
+* The default number of internal threads for the Blosc compressor has been
15
+ increased to a maximum of 8 (previously 4).
16
17
.. _release_1.0.0:
18
zarr/__init__.py
@@ -21,6 +21,5 @@
21
else:
22
ncores = multiprocessing.cpu_count()
23
blosc.init()
24
- # diminishing returns beyond 4 threads?
25
- blosc.set_nthreads(min(4, ncores))
+ blosc.set_nthreads(min(8, ncores))
26
atexit.register(blosc.destroy)
0 commit comments