Registry / utility / zfp
library1.0.1vcpkgunverified

Zfp is an open source C/C++ library for compressed numerical arrays that support high throughput read and write random access.

vcpkg install zfp
INSTALL
IMPORT
SIG · ZFP
Z
zfp
utilitycppv1.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

zfp.h
#include <zfp.h>

Initialize zfp for compressing a 1D double array of size 100

#include <zfp.h> #include <cstdio> int main() { zfp_type type = zfp_type_double; zfp_field* field = zfp_field_1d(nullptr, type, 100); zfp_stream* zfp = zfp_stream_open(nullptr); size_t bufsize = zfp_stream_maximum_size(zfp, field); printf("Buffer size: %zu\n", bufsize); zfp_stream_close(zfp); zfp_field_free(field); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.1latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
29 hits · last 30 days
node
26
Amazon
1
Resources

No resource links recorded.

zfp — pip install zfp · libregistry