Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/Blosc/c-blosc

A blocking, shuffling and loss-less compression library that can be faster than `memcpy()`.
https://github.com/Blosc/c-blosc

Reverting compatibility with Blosc 1.2.3 calls

42c2726af527c0c7145a4f5f748134e52e6bdaee authored about 10 years ago
sblosc_(de)compress() -> blosc_(de)compress_ctx()

ff6ca8efccd4baa1c08c6316e30c8483aadaa6b9 authored about 10 years ago
Thanked Christopher Speller in the README for his nice contextual contribution.

a4bfe2e1bd2679de62764502892dc69940a8f650 authored about 10 years ago
Merge pull request #66 from sideeffects/serial_blosc

Implemented contexts so that Blosc can be called from already multithread code without the globa...

aefa8914471c9a8b0fa5e928eed5f9582ffb96dc authored about 10 years ago
Blosc filter should call blosc_init.

e6e838114bc750d8add2bc9e269b23a3e1818cf0 authored about 10 years ago
Fixing issue with global threads setting.

9fddb19bf02c9acb7488ead3f6ef97609941bc9b authored about 10 years ago
Fixing C99 compatibility warnings.

dbfaabd6b4afdb97c479d81dc0b337b247505958 authored about 10 years ago
Adding back pool of threads. Create the pool with blosc_init before

calling blosc_compress, just as before. The new sblosc api will not use
a pool of threads.

fa7674ca59c0e7e9f54fa98485fe373d156417e9 authored about 10 years ago
Spelling and variable name changes.

Reverting version number to 1.4.2.dev

d3b545827da071b9d2d53f8cf6fecc201c57021f authored about 10 years ago
Inital version of serial blosc interface. Internal threading is currently disabled.

8a8e7aaf80ef32d886527c12b08f34847d005892 authored about 10 years ago
Fixing build for windows. Needs to have all variables decleared at the

beginning of a block for C code.

e1a02cd028730ed6e7b5bc3bc703dd62e0e99f56 authored about 10 years ago
Giving our version a (hopefully) unique version number.

2b1ffc67da901ac499f0d7ff0685f0b1652b214e authored about 10 years ago
Fixing blosc_getitem to allow it to be used with sblosc changes.

394297e3f6e1d539879848d1612bf575b56979af authored about 10 years ago
Restoring internal threading functionality. Only blosc_getitem is not working.

d85059959f5aa4f5fe539f86212efeec7a299fce authored about 10 years ago
Fixing compressor format issue.

Fixing blosc_free_resources issue.
Fixing blocksize is old API.

aba3fc971e9c1e17607e4e0bec9f776c4850bcb0 authored about 10 years ago
Merge pull request #64 from sideeffects/cmake_issue

Cmake Debug Postfix should not be hard coded in CMakeLists.txt

7cf8fb60cfa349c8a61d7331f3df42b0bfc6b5ed authored about 10 years ago
Merge pull request #63 from sideeffects/master

Fixes a corruption error when the compressor creates an output with exactly the same length than...

7a51ea2a1444f8dfc671a3e278206271b8cfb4dc authored about 10 years ago
This should not be hard coded into a CMakeLists.txt file. Different users may

want to specify different debug prefixes.

The proper way to set this is to pass -DCMAKE_DEBUG_P...

0cb459e0cbc8ec9acc0dceb48639c48574b7f73c authored about 10 years ago
Fixes a corruption error when using LZ4.

LZ4 is capable of returning a value that gets assigned to cbytes that is equal
to neblock. In thi...

83e197ec4e161e0cc7a83df94fac7d87b478c35c authored about 10 years ago
Merge pull request #62 from sideeffects/master

Const correctness for shuffle.

ef37b0980500bda974c92aa2f4c1a5133f094cf1 authored over 10 years ago
Const correctness for shuffle.

8bdd72b6b142323fbc26a446aa45e81b0bf07561 authored over 10 years ago
Merge pull request #61 from sideeffects/master

Blosc_init reentrancy and DLL_EXPORT on windows

119a38afaee2147ff40ec35131cec8e484a8138b authored over 10 years ago
Adding DLL_EXPORT for compilation on windows.

7b0adf9bf28e511b0d188b234244ca12d461ded7 authored over 10 years ago
Makes blosc_init reentrant. Allows for multiple users of blosc that do not know about each other to initalize the blosc library in any order.

e23ba6653795a5fdcbdaf8c5955aa21dc19109fd authored over 10 years ago
Merge pull request #60 from andrewschaaf/unused-variable

Fix an unused variable warning for {snappy,lz4}-free compilation

e45a2976c9af60aafb13abb0de7f771cd06fc7d8 authored over 10 years ago
Merge pull request #59 from vasaka/patch-1

Update blosc.h

bee8ffc43208f36c5d76829ba15e179a4161c046 authored over 10 years ago
Fix a warning for {snappy,lz4}-free compilation

Warning: "unused variable 'sbuffer'"

Other possible approaches include:

- `char sbuffer[256] _...

4d98218220599ea52483c9e3193253faf3177c5a authored over 10 years ago
Update blosc.h

Fix include quards, to allow compilation when blosc.h included twice.

d1d862faf1cc901e16f5af2e979bd3e9ba0b6017 authored over 10 years ago
Merge pull request #57 from dmbates/master

_shared and _static suffixes appear to be backwards.

293533e0757e1773e4c47a1fe1ac3d941ec25e37 authored over 10 years ago
_shared and _static suffixes appear to be backwards.

77614af15384fb724d47914afe486ae2d0484695 authored over 10 years ago
Fixed instructions for linking with Blosc

b37ca0bf820f104debde78f6267e5e7ea69e6c54 authored over 10 years ago
Fixed a link in README

765e91bbb9332e56c22313808cc2253b352da9fe authored over 10 years ago
Improved the docs on how to link apps with Blosc and other compressors

df68a7970c5d5a970db85d21cf192a9d2828031e authored over 10 years ago
Added more links to directories from the README file.

261cb3f26e537b7fc3221918e6d5a814bc82f1a7 authored over 10 years ago
Added a reference to the new examples/ directory in README

e6db78c3b17c3f0dc9fb26dcd857d3b8d8d8cb47 authored over 10 years ago
Added an examples directory on how to link apps with Blosc

3be30d221453333a2b881abd7f90df244bc7a311 authored over 10 years ago
Provide links for sources and API description

119d98f5c4ddbecfd07aa501d57cbeb5f96a3102 authored over 10 years ago
Bumping blosclz to 1.0.3

fe5350929161fe57a961a8b1d4aa8b293500ee7d authored over 10 years ago
Better parametrization based on experiments with benchmark suite

88ca68d083809688adad826d0c5c9d7dabbce6aa authored over 10 years ago
Optimized copies during blosclz decompression

ae1710146ba5365ecbb6fcdb1876e11df1983817 authored over 10 years ago
Merge pull request #56 from marascio/master

library names end with _debug in debug build

4224a0cdc196f2600fa1de38e9fbb48c74bf8e4c authored over 10 years ago
library names end with _debug in debug build

- Adds a cmake configuration option to CMakeLists.txt telling cmake to append
a postfix to lib...

c7ca553b380e923b0bd20f2f05f09a031e53f1cf authored over 10 years ago
stdlib.h moved from blosc.c to blosc.h as suggested by Rob Lathm.

a7b9333e86cc0b10406bdb67edc287e14f5583ba authored over 10 years ago
Post 1.4.1 release actions done.

2dedf5b443b35afb08086e6c8d3d63d2961fba84 authored over 10 years ago
Fixed a nasty bug for 1.4.0. Releasing 1.4.1.

5cac9456ae8cc72a43a7924e8491666876c46fbb authored over 10 years ago
Updated README to better reflect the state of Blosc

c1d739c924127ad5d16f2caad057fabd90b2a272 authored over 10 years ago
Get rid of an unused variable

aecfcd189513517ca30eaf0d3fa00728619d8e96 authored over 10 years ago
Post 1.4.0 release actions done

35c977068c47a644c0d6ed449be203127f0e76ff authored over 10 years ago
Updates in announcement procedure

99137df461823b16e90b6fb62bb00c928926a772 authored over 10 years ago
Removed the instructions for packaging as github has rendered this unnecessary

f2dfb73069b7fbbd07a7defa7d77672e53e65b5c authored over 10 years ago
Heating engines for 1.4.0 release

4f10289cfd6245bc9702ee6e1c22bed41d3900c5 authored over 10 years ago
LZ4 upgraded to r119.

325eaac88ce924397fa02aec67aacfe20fed6d4a authored over 10 years ago
Added support for AVX detection in the future.

f2c3055919898f3290808f434ded5d8e668112dc authored over 10 years ago
Disabling unaligned support for ARM because it is too slow.

8064e406b1a774a27bb719894c1b976a8d90be03 authored over 10 years ago
Arquitectures requiring strict alignment on data access are supported now.

7ec11fab7fe04515442a9651e2355b3a4657f97c authored over 10 years ago
Updated the mail address to [email protected]

25fbc66d03b817a62fa8adc1d17f6ae4f967d868 authored over 10 years ago
Post 1.3.6 release actions done

4cfaa97f5cda9d8e5665ffae68021fa5cb09953e authored over 10 years ago
Version bumped to 1.3.6

60fba37cae0eefaf69cd85cd123e0f8e8a068eca authored over 10 years ago
Updated LZ4 to r118

4e8ec70659c2ce2c79e3fdd900be04db6d4bba21 authored over 10 years ago
Fixed the mean of memcpy when selected just a few thread runs (via -l flag)

94b745df126a85b1c1a865151d2b1416e324e4d8 authored over 10 years ago
Moved text for memcpy more towrds y axe still

6e6b82eecae7ee090758a9c724f5a88553634327 authored over 10 years ago
Moved text for memcpy more towrds y axes

c39ec30f9025d04aaf736e59414f6822b93f3be3 authored over 10 years ago
Added a new -r flag for easy creation of figures for reporting

2972a87fb067a9054c43923d5899337c72cd9f45 authored over 10 years ago
Set image files to measure 512x384 (64dpi) for better visualization in the web

e8a423c9700167923787d658f01d279d80b13b73 authored over 10 years ago
Merge pull request #50 from Blosc/fix_plot_speeds

add the codec to the plotter

ca518c46565b80e7cbe707ee11678e22fb90b5e7 authored over 10 years ago
add the codec to the plotter

The plotting tool wasn't adapted to handle benchmark output that includes codec
information. Thi...

46808e00a203c02eb9702d46571875b15f4dbf55 authored over 10 years ago
Remove stale comment about Blosc not being thread-safe. It should be so since 1.2 release.

7c67f0f413037e2c533cbb5a6fbbb2d5457cb2da authored over 10 years ago
Merge pull request #48 from Blosc/feature/cpp_compile

extern C block

3452e81cbe1cdbb6682de5f7e704881e086166c3 authored over 10 years ago
extern C block

d2294453b87ef1997929a1286ddeef695d026d5f authored over 10 years ago
Added clarification of the typesize range where shuffle is active.

e56e1ba6308153b445da6b9450ea66f0c4dd195c authored almost 11 years ago
Added a SOVERSION independent of the VERSION. Fixes #46.

468823f4050b291af3a0b59d69f9d2a384bbd526 authored almost 11 years ago
Post 1.3.5 release actions done.

0f849a06caa2a36b0d5941b656ec9cafc2d81f63 authored almost 11 years ago
Getting ready for releasing c-blosc 1.3.5

d934c827e6cd6544be1c47dc3260fb73f08cf547 authored almost 11 years ago
Removed a pointer from integer compiler warning due to a bad macro definition.

0f69420655288d728453c76820158a861ec009dd authored almost 11 years ago
Actions post 1.3.4 release done

db1db4af49e4b5c22893c8cb97beffc2fcb4204e authored almost 11 years ago
Getting ready for releasing c-blosc 1.3.4

c64d75ba54652ffd2e767a638f0e918a331b169d authored almost 11 years ago
Fixed a false buffer overrun condition.

ef311edff106c37bf5e62e3660b803dd09c04e32 authored almost 11 years ago
Fixed the type of a buffer string

e4226e086404ce148f86bf25850c055a809238fc authored almost 11 years ago
Post 1.3.3 release actions done.

b466ec0399b497398968777f203558c18d34502b authored almost 11 years ago
Version bumped to 1.3.3 (final)

d0a7fcf35b67f03a64b2de2407e9f5817591261f authored almost 11 years ago
Updated the announcement for 1.3.3

ec36abbf4b86735f66bd87092fb6b4200724221e authored almost 11 years ago
Bump to 1.3.3-rc1

ae4c5a07eea3feaeed96efcdc2b88d50c5c0f1be authored almost 11 years ago
Fixed a problem with newly added blosc_cbuffer_complib()

2d6471a158e7779858e7415280822162b019aeba authored almost 11 years ago
Added a comment about the range for clevel in lz4hc

77d41c89a6e427a3da5b1ca41910df9231970d1c authored almost 11 years ago
Added a new blosc_cbuffer_complib() API for getting the library name of a compressed buffer

365f819606d491645ff92e2a5c7accf59bca88f7 authored almost 11 years ago
Updated LZ4 to 1.1.3. The new compression level support for LZ4HC is honored in Blosc too.

b19a4fdc1568380d7c13f749d57df9865c66d601 authored almost 11 years ago
Merge pull request #45 from esc/fix_readme

fix codec enumeration (in README)

7c16dac1283a7a9cd2d916d199a4f49a431151a7 authored almost 11 years ago
versionlz in blosc_buffer_versions() returns the version for LZ internal compressor

45f8a9542496ee751b1870d772ed8e1bea38bce1 authored almost 11 years ago
Updated references to the new project site in docs

ca4a4ccdf5deea13a2f0ea3fd4944761a200a672 authored almost 11 years ago
Updated to LZ4 r113

0622b2ad124d64fc6fb39b0336b58377ec0a805c authored almost 11 years ago
fix codec enumeration (in README)

Upon further inspection of the Blosc source code the changes made to the header
README in 8707b4...

7ad46ce6327ad20c965654c7cec4683c43c27a37 authored almost 11 years ago
Post-actions for release 1.3.2 done

3f1953bf38f6c13c87d27c11669a74eeccf58df3 authored about 11 years ago
Getting ready for 1.3.2

60e7e5c090de2ef9dd59e133d1055b4d6b9b1f12 authored about 11 years ago
Added a standalone print_versions program and updated Makefile for tests

51e7d3ded454167b327392219cb320d75d751f4c authored about 11 years ago
Standarized on using SNAPPY_VERSION and not SNAPPY_VERSION_STRING

6fbbd318d48d6077b5ae050170e76f6df47c5891 authored about 11 years ago
Adding a version for Snappy in internal sources

1338b14843388ab94094d17f46e6442ccc2e24e9 authored about 11 years ago
Adding a version for LZ4 in internal sources

f5cf5656385bea94adc41cbbb5e11bfcf1e0f131 authored about 11 years ago
Added a fix for compiling against MSVC 2008.

237068dc1e8faafd285a990159b0cf0a2926447c authored about 11 years ago
Experimenting with a plain C compiler and travisci

ec4d5c8d9bf018e6d377ce3fba744544625903f3 authored about 11 years ago
Not trust in existing libraries for Travis, but the included ones.

bbc1692500d11851e088c2825c17915812bfd9af authored about 11 years ago