Commit Graph

9 Commits

Author SHA1 Message Date
martin
127596e484 Update blosc to 1.21.2. 2022-12-09 10:37:30 +00:00
naddy
b2eabd8823 drop RCS Ids 2022-03-11 18:16:02 +00:00
martin
9ee4b8297a Update blosc to bugfix release 1.21.1. 2021-11-07 12:24:50 +00:00
martin
114bf52bc2 Update blosc to 1.21.0. 2021-01-04 09:34:36 +00:00
martin
bccd4bce15 Update blosc to 1.20.1. Keep building with external snappy. 2020-10-06 08:38:45 +00:00
martin
75235a431b Update blosc to 1.20.0. 2020-07-31 19:35:58 +00:00
martin
8dbe7f5534 Update c-blosc to 1.19.0. 2020-06-07 11:26:07 +00:00
martin
25d6bd814f Update blosc to 1.18.1. 2020-04-07 12:47:39 +00:00
feinerer
5f3d820a3e Import Blosc 1.17.1
Blosc is a high performance compressor optimized for binary data. It has been
designed to transmit data to the processor cache faster than the traditional,
non-compressed, direct memory fetch approach via a memcpy() OS call. Blosc is
meant not only to reduce the size of large datasets on-disk or in-memory, but
also to accelerate memory-bound computations.

It uses the blocking technique so as to reduce activity in the memory bus as
much as possible. In short, this technique works by dividing datasets in blocks
that are small enough to fit in caches of modern processors and perform
compression/decompression there. It also leverages, if available, SIMD
instructions (SSE2, AVX2) and multi-threading capabilities of CPUs, in order to
accelerate the compression/decompression process to a maximum.

From martin@; input and OK from bcallah@, feinerer@, and sthen@
2019-12-19 07:00:24 +00:00