/* Copyright (C) 2014 Francesc Alted http://blosc.org License: MIT (see LICENSE.txt) Example program demonstrating use of the Blosc filter from C code. To compile this program: gcc many_compressors.c -o many_compressors -lblosc -lpthread or, if you don't have the blosc library installed: gcc -O3 -msse2 many_compressors.c ../blosc/*.c -I../blosc \ -o many_compressors -lpthread \ -DHAVE_ZLIB -lz -DHAVE_LZ4 -llz4 -DHAVE_SNAPPY -lsnappy Using MSVC on Windows: cl /Ox /Femany_compressors.exe /Iblosc many_compressors.c blosc\*.c To run: ./many_compressors Blosc version info: 1.4.2.dev ($Date:: 2014-07-08 #$) Using 4 threads (previously using 1) Using blosclz compressor Compression: 4000000 -> 158494 (25.2x) Succesful roundtrip! Using lz4 compressor Compression: 4000000 -> 234238 (17.1x) Succesful roundtrip! Using lz4hc compressor Compression: 4000000 -> 38314 (104.4x) Succesful roundtrip! Using snappy compressor Compression: 4000000 -> 311617 (12.8x) Succesful roundtrip! Using zlib compressor Compression: 4000000 -> 22103 (181.0x) Succesful roundtrip! */ #include #include #define SIZE 100*100*100 #define SHAPE {100,100,100} #define CHUNKSHAPE {1,100,100} int main(){ static float data[SIZE]; static float data_out[SIZE]; static float data_dest[SIZE]; int isize = SIZE*sizeof(float), osize = SIZE*sizeof(float); int dsize = SIZE*sizeof(float), csize; int nthreads, pnthreads, i; char* compressors[] = {"blosclz", "lz4", "lz4hc", "snappy", "zlib"}; int ccode, rcode; for(i=0; i %d (%.1fx)\n", isize, csize, (1.*isize) / csize); /* Decompress */ dsize = blosc_decompress(data_out, data_dest, dsize); if (dsize < 0) { printf("Decompression error. Error code: %d\n", dsize); return dsize; } /* After using it, destroy the Blosc environment */ blosc_destroy(); for(i=0;i