We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looking at one of these failures (reading js.zr/blosc/lz4/ with Zarr) the first few values differ:
Yeah, the values seen there are what would be obtained when trying to convert uint8 values to int8 so that values >=128 overflow and become negative.
uint8
int8
For example
import numpy as np np.asarray([154, 147, 151, 109], dtype=np.int8)
gives
array([-102, -109, -105, 109], dtype=int8)
Originally posted by @grlee77 in #37 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Yeah, the values seen there are what would be obtained when trying to convert
uint8
values toint8
so that values >=128 overflow and become negative.For example
gives
Originally posted by @grlee77 in #37 (comment)
The text was updated successfully, but these errors were encountered: