NCAR / SPERR

SPERR is a lossy scientific (floating-point) data compressor that produces one of the best rate-distortion curves.
Apache License 2.0
19 stars 10 forks source link

Less recursions when depositing morton #215

Closed shaomeng closed 1 year ago

shaomeng commented 1 year ago

This PR manually handles 4-element and 8-element cases (instead of relying on recursion) when creating morton organization, so it reduces the number of recursions and also the invocation of dividing sets. It's another obvious performance improvement.