Open
Description
Dear all,
I am trying to generate a .zfp
file with a header using CUDA. Using the zfp util on the command line, a serial test gives:
zfp -f -3 201 201 2412 -r 4 -x serial -i snaps.bin -z test.zfp -h
test.zfp
has size 50188912
and can be correctly decompressed using:
zfp -h -z test.zfp -o test.bin
But doing the same with the cuda
flag, i.e.:
zfp -f -3 201 201 2412 -r 4 -x cuda -i snaps.bin -z test.zfp -h
Now test.zfp
has size 50188896
, and
zfp -h -z test.zfp -o test.bin
gives incorrect or missing header
. When doing the decompression with all the parameters, it works perfectly. How could I put this header when doing the compression on the GPU?
Thanks in advance,
Victor