At the moment, if you attempt to call Array.create without specifying chunks or chunk_shape, a ValueError is raised. But I think we should allow automatically creating chunks if the chunks are not specified. In the short term we can use the same heuristic that zarr v2 uses, and in the longer term we could consider making this behavior a configuration point.
At the moment, if you attempt to call
Array.create
without specifyingchunks
orchunk_shape
, aValueError
is raised. But I think we should allow automatically creating chunks if the chunks are not specified. In the short term we can use the same heuristic that zarr v2 uses, and in the longer term we could consider making this behavior a configuration point.