File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed
Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ your Blosc build:
106106
107107.. code-block :: console
108108
109- PYTHONPATH=. python bench/compress_numpy .py
109+ PYTHONPATH=. python bench/pack_compress .py
110110
111111 Just to whet your appetite, here are some speed figures for an Intel box (i9-10940X CPU @ 3.30GHz, 14 cores)
112112running Ubuntu 22.04. In particular, see how performance for `pack_array2/unpack_array2 ` has
Original file line number Diff line number Diff line change @@ -107,12 +107,18 @@ and `size`.
107107* On the other hand, the function ` unpack ` doesn't
108108return a numpy array whereas the ` unpack_array `
109109builds that array.
110+
111+ * The ` compcode ` parameter has been renamed to ` codec ` .
112+ A ` NameError ` exception will be raised when using the old name.
113+ Please update your code when you see this exception.
114+
115+ * The different codecs are accessible via the ` Codec ` enumerated.
116+ E.g. ` Codec.LZ4 ` or ` Codec.Zlib `
110117
111- * The ` blosc.NOSHUFFLE ` is replaced
112- by the ` blosc2.NOFILTER ` , but for backward
113- compatibility ` blosc2.NOSHUFFLE ` still exists.
118+ * The different filters are accessible via the ` Filter ` enumerated.
119+ E.g. ` Filter.SHUFFLE ` or ` Filter.BITSHUFFLE `
114120
115- * A bytearray or NumPy object can be passed to
116- the ` blosc2.decompress ` function to store the
117- decompressed data.
121+ * The ` blosc.NOSHUFFLE ` is replaced by the ` blosc2.Filter.NOFILTER ` .
118122
123+ * A bytearray or NumPy object can be passed to the ` blosc2.decompress `
124+ function to store the decompressed data.
You can’t perform that action at this time.
0 commit comments