https://github.com/taosdata/tsz
Error-bounded Lossy Data Compressor For Float Double
https://github.com/taosdata/tsz
Last synced: 9 months ago
JSON representation
Error-bounded Lossy Data Compressor For Float Double
- Host: GitHub
- URL: https://github.com/taosdata/tsz
- Owner: taosdata
- License: bsd-3-clause
- Created: 2021-07-19T02:06:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-23T21:43:02.000Z (almost 2 years ago)
- Last Synced: 2025-04-02T19:47:02.705Z (9 months ago)
- Language: C
- Size: 443 KB
- Stars: 5
- Watchers: 10
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TSZ
Error-bounded Lossy Data Compressor For Float Double
TSZ algorithm is come from SZ algorithm, Github url is https://github.com/szcompressor .
Bellow is aspect of improvement :
1) Better speed and size
SZ head size about 24 bytes, we are reduced to 2 bytes.
we delete some no use code and some unnecessary function could be droped.
2) Support multi-threads, interface is thread-safety.
3) Remove 2D 3D 4D 5D function, only 1D be remained.
4) Remove int8 int16 int32 and other datatype, only float double be remained.
5) Optimize code speed
6) Other optimize...
After modify, TSZ become faster、smaller and independent. TSZ more suitable for small block data compression.