zfp
zfp copied to clipboard
Compressed numerical arrays that support high-speed random access
OS: ArchLinux gcc: 12.1.1 python: 3.10.5 ``` cmake -B build -S zfp-1.0.0 \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_SKIP_RPATH=ON \ -DBUILD_CFP=ON \ -DBUILD_ZFPY=ON \ -DBUILD_ZFORP=ON make -C build ``` error log: ``` /usr/bin/ld:...
Excuse me, I installed it under the ubuntu system according to the documentation, but there are only .so files and no .a files in my lib folder, which shows that...
zfp library installation differs between CMake and GNU make in that there's currently no _install_ target for GNU make builds. `make install` ought to install components in a user-defined directory.
Some versions of Cython do not recognize `ptrdiff_t`, causing compilation to fail: ``` Error compiling Cython file: ------------------------------------------------------------ ... # structs ctypedef struct zfp_field: zfp_type _type "type" size_t nx, ny,...
ZFP can be built using either CMake or apparently also vanilla Make (GNU make). But, these two systems are not consistent in how they ultimately *install* a ZFP build. There...
The following fails on macOS using the latest 1.0.0 release: ``` make BUILD_CFP=1 BUILD_SHARED_LIBS=1 ``` The solution is to add `OS=mac`: ``` make BUILD_CFP=1 BUILD_SHARED_LIBS=1 OS=mac ``` This should be...
I have a project where we compute a time step on the GPU and then asynchronously copy some data back to the host for later use. This copy overlaps with...
I ran into a few hurdles while attempting to compile and use ZFP with Cuda support using NVHPC v22.5 and its Fortran bindings. I might have misinterpreted part of the...
At this point in time there has been quite some modifications on `hip-support` branch (leading `develop` by 56 commits and lagging by 176 commits)! Is there a plan anytime soon...