https://github.com/szcompressor/cpSZ
Raw File
Tip revision: d10c98e2e45e679aa21a94102b02fb4cfbf9ac2a authored by Xin Liang on 16 January 2023, 05:25:15 UTC
clean code and cmake
Tip revision: d10c98e
README.md
# cpSZ
Critical point preserving for vector fields

# Installation
sh build_script.sh <br>
Dependancies: ZSTD

# Run compression
./build/bin/sz_compress_cp_preserve_2d_test data/uf.dat data/vf.dat 2400 3600 0.1 <br>
Decompressed data files are data/uf.dat.out and data/vf.dat.out

# Evaluation
./external/ftk/build/bin/ex_cp_2d_bilinear 3600 2400 ./data/uf.dat ./data/vf.dat test <br>
To test 2D linear vector fields, re-build the executables and re-run the compression after changing the corresponding lines (comment line 23 and uncomment line 24) and then evaluate with the following command: <br>
./external/ftk/build/bin/ex_cp_2d 3600 2400 ./data/uf.dat ./data/vf.dat test 
back to top