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

Potential improvement in function m_partition_S_XYZ() #199

Closed shaomeng closed 1 year ago

shaomeng commented 1 year ago

The current function m_partition_S_XYZ() fills all details of a subset. However, a number of the subsets are eventually empty. It's an opportunity to improvement performance by not filling details of an empty subset.

shaomeng commented 1 year ago

Doesn't sounds like a good idea anymore; it's pretty cheap to fill in all the details, and the suggested approach would involve branches!