Closed
Description
Zarr version
3.0.0.beta
Numcodecs version
0.13
Python Version
3.11
Operating System
Mac
Installation
pip
Description
Passing order=F
to zarr.array
silently ignores the parameter, producing a C
ordered array.
Steps to reproduce
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'
Additional output
No response
Metadata
Metadata
Assignees
Type
Projects
Status
Done