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
zarr.array
order
3.0.0.beta
0.13
3.11
Mac
pip
Passing order=F to zarr.array silently ignores the parameter, producing a C ordered array.
order=F
C
In [20]: a = np.arange(100000000, dtype='i4').reshape(10000, 10000).T In [21]: f = zarr.array(a, chunks=(1000, 1000), order='F') In [22]: f.order Out[22]: 'C'
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Zarr version
3.0.0.beta
Numcodecs version
0.13
Python Version
3.11
Operating System
Mac
Installation
pip
Description
Passing
order=F
tozarr.array
silently ignores the parameter, producing aC
ordered array.Steps to reproduce
Additional output
No response
The text was updated successfully, but these errors were encountered: