Peter Lindstrom

Results 18 issues of Peter Lindstrom

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.

enhancement

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,...

bug

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...

documentation

After calling `zfp_stream_set_precision(stream, 64)`, `zfp_stream_compression_mode(stream)` returns `zfp_mode_expert` rather than the expected `zfp_mode_fixed_precision`. This is a result of `zfp_stream_set_precision(stream, 64)` not constraining any of the four expert-mode parameters, leaving them at...

@lindstro Thanks for the response. I suspect float data type the function should be "frexpf(float,int* )" and double it should be "frexp(double,int*)". 1. feature/hip-support branch test case Decompressor Fail :...

We are still investigating this issue, first reported on #85, which appears to be due to `-fopenmp` not being passed and `_OPENMP` not being defined when `src/zfp.c` is compiled. This...

help wanted

As identified in #163, the lone Fortran test does not actually ensure that the data is correctly compressed or decompressed. It also has other shortcomings: - The array being compressed...

As mentioned in #119, blocks with all subnormal but nonzero numbers are not encoded correctly because of reciprocal overflow, which can be avoided using the `ZFP_WITH_DAZ` compile-time macro. However, there...

bug

## Details * Read the Docs project URL: https://readthedocs.org/projects/zfp/ ## Expected Result Selecting the "default branch" in Admin->Advanced Settings and clicking "Save" should result in the "latest" version (https://zfp.readthedocs.io/en/latest/, in...

Support
Needed: more information

As noted in #189, MGARD does not build with AppleClang 14.0.3.14030022: ``` tests/src/test_compressors.cpp:128:76: error: cannot initialize a parameter of type 'long *' with an lvalue of type 'std::int64_t *const' (aka...