-
-
Notifications
You must be signed in to change notification settings - Fork 398
Expand file tree
/
Copy pathchunk_grids.py
More file actions
790 lines (664 loc) · 29.9 KB
/
chunk_grids.py
File metadata and controls
790 lines (664 loc) · 29.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
from __future__ import annotations
import bisect
import itertools
import math
import numbers
import operator
import warnings
from dataclasses import dataclass, field
from functools import reduce
from typing import TYPE_CHECKING, Any, Literal, Protocol, TypeGuard, cast, runtime_checkable
import numpy as np
import numpy.typing as npt
import zarr
from zarr.core.common import (
ShapeLike,
ceildiv,
parse_shapelike,
)
from zarr.errors import ZarrUserWarning
if TYPE_CHECKING:
from collections.abc import Iterable, Iterator, Sequence
from zarr.core.array import ShardsLike
from zarr.core.metadata import ArrayMetadata
@dataclass(frozen=True)
class FixedDimension:
"""Uniform chunk size. Boundary chunks contain less data but are
encoded at full size by the codec pipeline."""
size: int # chunk edge length (>= 0)
extent: int # array dimension length
nchunks: int = field(init=False, repr=False)
ngridcells: int = field(init=False, repr=False)
def __post_init__(self) -> None:
if self.size < 0:
raise ValueError(f"FixedDimension size must be >= 0, got {self.size}")
if self.extent < 0:
raise ValueError(f"FixedDimension extent must be >= 0, got {self.extent}")
if self.size == 0:
n = 0
else:
n = ceildiv(self.extent, self.size)
object.__setattr__(self, "nchunks", n)
object.__setattr__(self, "ngridcells", n)
def index_to_chunk(self, idx: int) -> int:
if idx < 0:
raise IndexError(f"Negative index {idx} is not allowed")
if idx >= self.extent:
raise IndexError(f"Index {idx} is out of bounds for extent {self.extent}")
if self.size == 0:
return 0
return idx // self.size
def chunk_offset(self, chunk_ix: int) -> int:
"""Byte-aligned start position of chunk *chunk_ix* in array coordinates.
Does not validate *chunk_ix* — callers must ensure it is in
``[0, nchunks)``. Use ``ChunkGrid.__getitem__`` for safe access.
"""
return chunk_ix * self.size
def chunk_size(self, chunk_ix: int) -> int:
"""Buffer size for codec processing — always uniform.
Does not validate *chunk_ix* — callers must ensure it is in
``[0, nchunks)``. Use ``ChunkGrid.__getitem__`` for safe access.
"""
return self.size
def data_size(self, chunk_ix: int) -> int:
"""Valid data region within the buffer — clipped at extent.
Does not validate *chunk_ix* — callers must ensure it is in
``[0, nchunks)``. Use ``ChunkGrid.__getitem__`` for safe access.
"""
if self.size == 0:
return 0
return max(0, min(self.size, self.extent - chunk_ix * self.size))
@property
def _unique_edge_lengths(self) -> Iterable[int]:
"""Distinct chunk edge lengths for this dimension.
Used by shard validation to check that every unique edge length
is divisible by the inner chunk size. O(1) for fixed dimensions
since there is only one edge length.
"""
return (self.size,)
def indices_to_chunks(self, indices: npt.NDArray[np.intp]) -> npt.NDArray[np.intp]:
if self.size == 0:
return np.zeros_like(indices)
return indices // self.size
def with_extent(self, new_extent: int) -> FixedDimension:
"""Re-bind to *new_extent* without modifying edges.
Used when constructing a grid from existing metadata where edges
are already correct. Raises on
``VaryingDimension`` if edges don't cover the new extent.
"""
return FixedDimension(size=self.size, extent=new_extent)
def resize(self, new_extent: int) -> FixedDimension:
"""Adapt for a user-initiated array resize, growing edges if needed.
For ``FixedDimension`` this is identical to ``with_extent`` since
regular grids don't store explicit edges.
"""
return FixedDimension(size=self.size, extent=new_extent)
@property
def _size_repr(self) -> str:
return str(self.size)
@dataclass(frozen=True)
class VaryingDimension:
"""Explicit per-chunk sizes. The last chunk may extend past the array
extent (``extent < sum(edges)``), in which case ``data_size`` clips to
the valid region while ``chunk_size`` returns the full edge length for
codec processing. This underflow is allowed to match how regular grids
handle boundary chunks, and to support shrinking an array without
rewriting chunk edges (the spec allows trailing edges beyond the extent)."""
edges: tuple[int, ...] # per-chunk edge lengths (all > 0)
cumulative: tuple[int, ...] # prefix sums for O(log n) lookup
extent: int # array dimension length (may be < sum(edges) after resize)
nchunks: int = field(init=False, repr=False) # cached at construction
ngridcells: int = field(init=False, repr=False) # cached at construction
# TODO(perf): for long dimensions (O(million chunks)):
# - with_extent/resize recompute cumulative sums and nchunks from scratch;
# add a fast path that reuses the existing cumulative tuple.
# - Consider storing cumulative as ndarray so bisect calls can use
# np.searchsorted. Scalar lookups (chunk_offset, index_to_chunk)
# would need benchmarking to confirm no regression.
def __init__(self, edges: Sequence[int], extent: int) -> None:
edges_tuple = tuple(edges)
if not edges_tuple:
raise ValueError("VaryingDimension edges must not be empty")
if any(e <= 0 for e in edges_tuple):
raise ValueError(f"All edge lengths must be > 0, got {edges_tuple}")
cumulative = tuple(itertools.accumulate(edges_tuple))
if extent < 0:
raise ValueError(f"VaryingDimension extent must be >= 0, got {extent}")
if extent > cumulative[-1]:
raise ValueError(
f"VaryingDimension extent {extent} exceeds sum of edges {cumulative[-1]}"
)
object.__setattr__(self, "edges", edges_tuple)
object.__setattr__(self, "cumulative", cumulative)
object.__setattr__(self, "extent", extent)
# Cache nchunks: number of chunks that overlap [0, extent)
if extent == 0:
n = 0
else:
n = bisect.bisect_left(cumulative, extent) + 1
object.__setattr__(self, "nchunks", n)
object.__setattr__(self, "ngridcells", len(edges_tuple))
def index_to_chunk(self, idx: int) -> int:
if idx < 0 or idx >= self.extent:
raise IndexError(f"Index {idx} out of bounds for dimension with extent {self.extent}")
return bisect.bisect_right(self.cumulative, idx)
def chunk_offset(self, chunk_ix: int) -> int:
"""Start position of chunk *chunk_ix* in array coordinates.
Does not validate *chunk_ix* — callers must ensure it is in
``[0, ngridcells)``. Use ``ChunkGrid.__getitem__`` for safe access.
"""
return self.cumulative[chunk_ix - 1] if chunk_ix > 0 else 0
def chunk_size(self, chunk_ix: int) -> int:
"""Buffer size for codec processing.
Does not validate *chunk_ix* — callers must ensure it is in
``[0, ngridcells)``. Use ``ChunkGrid.__getitem__`` for safe access.
"""
return self.edges[chunk_ix]
def data_size(self, chunk_ix: int) -> int:
"""Valid data region within the buffer — clipped at extent.
Does not validate *chunk_ix* — callers must ensure it is in
``[0, ngridcells)``. Use ``ChunkGrid.__getitem__`` for safe access.
"""
offset = self.cumulative[chunk_ix - 1] if chunk_ix > 0 else 0
return max(0, min(self.edges[chunk_ix], self.extent - offset))
@property
def _unique_edge_lengths(self) -> Iterable[int]:
"""Distinct chunk edge lengths for this dimension (lazily deduplicated).
Used by shard validation to check that every unique edge length
is divisible by the inner chunk size. Lazy deduplication avoids
materializing all edges for dimensions with many repeated sizes.
"""
seen: set[int] = set()
for e in self.edges:
if e not in seen:
seen.add(e)
yield e
def indices_to_chunks(self, indices: npt.NDArray[np.intp]) -> npt.NDArray[np.intp]:
return np.searchsorted(self.cumulative, indices, side="right")
def with_extent(self, new_extent: int) -> VaryingDimension:
"""Re-bind to *new_extent* without modifying edges.
Used when constructing a grid from existing metadata where edges
are already correct. Raises if the
existing edges don't cover *new_extent*.
"""
edge_sum = self.cumulative[-1]
if edge_sum < new_extent:
raise ValueError(
f"VaryingDimension edge sum {edge_sum} is less than new extent {new_extent}"
)
return VaryingDimension(self.edges, extent=new_extent)
def resize(self, new_extent: int) -> VaryingDimension:
"""Adapt for a user-initiated array resize, growing edges if needed.
Unlike ``with_extent``, this never fails — if *new_extent* exceeds
the current edge sum, a new chunk is appended to cover the gap.
Shrinking preserves all edges (the spec allows trailing edges
beyond the array extent).
"""
if new_extent == self.extent:
return self
elif new_extent > self.cumulative[-1]:
expanded_edges = list(self.edges) + [new_extent - self.cumulative[-1]]
return VaryingDimension(expanded_edges, extent=new_extent)
else:
return VaryingDimension(self.edges, extent=new_extent)
@property
def _size_repr(self) -> str:
return repr(tuple(self.edges))
@runtime_checkable
class DimensionGrid(Protocol):
"""Structural interface shared by FixedDimension and VaryingDimension."""
@property
def nchunks(self) -> int: ...
@property
def ngridcells(self) -> int: ...
@property
def extent(self) -> int: ...
def index_to_chunk(self, idx: int) -> int: ...
def chunk_offset(self, chunk_ix: int) -> int: ...
def chunk_size(self, chunk_ix: int) -> int: ...
def data_size(self, chunk_ix: int) -> int: ...
def indices_to_chunks(self, indices: npt.NDArray[np.intp]) -> npt.NDArray[np.intp]: ...
@property
def _unique_edge_lengths(self) -> Iterable[int]: ...
def with_extent(self, new_extent: int) -> DimensionGrid: ...
def resize(self, new_extent: int) -> DimensionGrid: ...
@property
def _size_repr(self) -> str: ...
@dataclass(frozen=True)
class ChunkSpec:
"""Specification of a single chunk's location and size.
``slices`` gives the valid data region in array coordinates.
``codec_shape`` gives the buffer shape for codec processing.
For interior chunks these are equal. For boundary chunks of a regular
grid, ``codec_shape`` is the full declared chunk size while ``shape``
is clipped. For rectilinear grids, ``shape == codec_shape`` unless the
last chunk extends past the array extent.
"""
slices: tuple[slice, ...]
codec_shape: tuple[int, ...]
@property
def shape(self) -> tuple[int, ...]:
return tuple(s.stop - s.start for s in self.slices)
@property
def is_boundary(self) -> bool:
return self.shape != self.codec_shape
# A single dimension's rectilinear chunk spec: bare int (uniform shorthand),
# list of ints (explicit edges), or mixed RLE (e.g. [[10, 3], 5]).
def _is_rectilinear_chunks(chunks: Any) -> TypeGuard[Sequence[Sequence[int]]]:
"""Check if chunks is a nested sequence (e.g. [[10, 20], [5, 5]]).
Returns True for inputs like [[10, 20], [5, 5]] or [(10, 20), (5, 5)].
Returns False for flat sequences like (10, 10) or [10, 10].
"""
if isinstance(chunks, (str, int, ChunkGrid)):
return False
if not hasattr(chunks, "__iter__"):
return False
try:
first_elem = next(iter(chunks), None)
if first_elem is None:
return False
return hasattr(first_elem, "__iter__") and not isinstance(first_elem, (str, bytes, int))
except (TypeError, StopIteration):
return False
@dataclass(frozen=True)
class ChunkGrid:
"""
Unified chunk grid supporting both regular and rectilinear chunking.
A chunk grid is a concrete arrangement of chunks for a specific array.
It stores the extent (array dimension length) per dimension, enabling
``grid[coords]`` to return a ``ChunkSpec`` without external parameters.
Internally represents each dimension as either FixedDimension (uniform chunks)
or VaryingDimension (per-chunk edge lengths with prefix sums).
"""
_dimensions: tuple[DimensionGrid, ...]
_is_regular: bool
def __init__(self, *, dimensions: tuple[DimensionGrid, ...]) -> None:
object.__setattr__(self, "_dimensions", dimensions)
object.__setattr__(
self, "_is_regular", all(isinstance(d, FixedDimension) for d in dimensions)
)
def __repr__(self) -> str:
sizes = ", ".join(d._size_repr for d in self._dimensions)
shape = tuple(d.extent for d in self._dimensions)
return f"ChunkGrid(chunk_sizes=({sizes}), array_shape={shape})"
@classmethod
def from_metadata(cls, metadata: ArrayMetadata) -> ChunkGrid:
"""Construct a ChunkGrid from array metadata.
For v2 metadata, builds from shape and chunks.
For v3 metadata, dispatches on the chunk grid type.
"""
from zarr.core.metadata import ArrayV2Metadata
from zarr.core.metadata.v3 import RectilinearChunkGridMetadata, RegularChunkGridMetadata
if isinstance(metadata, ArrayV2Metadata):
return cls.from_sizes(metadata.shape, tuple(metadata.chunks))
chunk_grid_meta = metadata.chunk_grid
if isinstance(chunk_grid_meta, RegularChunkGridMetadata):
return cls.from_sizes(metadata.shape, tuple(chunk_grid_meta.chunk_shape))
elif isinstance(chunk_grid_meta, RectilinearChunkGridMetadata):
return cls.from_sizes(metadata.shape, chunk_grid_meta.chunk_shapes)
else:
raise TypeError(f"Unknown chunk grid metadata type: {type(chunk_grid_meta)}")
@classmethod
def from_sizes(
cls,
array_shape: ShapeLike,
chunk_sizes: Sequence[int | Sequence[int]],
) -> ChunkGrid:
"""Create a ChunkGrid from per-dimension chunk size specifications.
Parameters
----------
array_shape
The array shape (one extent per dimension).
chunk_sizes
Per-dimension chunk sizes. Each element is either:
- An ``int`` — regular (fixed) chunk size for that dimension.
- A ``Sequence[int]`` — explicit per-chunk edge lengths. If all
edges are identical and cover the extent, the dimension is
stored as ``FixedDimension``; otherwise as ``VaryingDimension``.
"""
extents = parse_shapelike(array_shape)
if len(extents) != len(chunk_sizes):
raise ValueError(
f"array_shape has {len(extents)} dimensions but chunk_sizes "
f"has {len(chunk_sizes)} dimensions"
)
dims: list[DimensionGrid] = []
for dim_spec, extent in zip(chunk_sizes, extents, strict=True):
if isinstance(dim_spec, int):
dims.append(FixedDimension(size=dim_spec, extent=extent))
else:
edges_list = list(dim_spec)
if not edges_list:
raise ValueError("Each dimension must have at least one chunk")
edge_sum = sum(edges_list)
if (
edges_list[0] > 0
and all(e == edges_list[0] for e in edges_list)
and (extent == edge_sum or len(edges_list) == ceildiv(extent, edges_list[0]))
):
dims.append(FixedDimension(size=edges_list[0], extent=extent))
else:
dims.append(VaryingDimension(edges_list, extent=extent))
return cls(dimensions=tuple(dims))
# -- Properties --
@property
def ndim(self) -> int:
return len(self._dimensions)
@property
def is_regular(self) -> bool:
return self._is_regular
@property
def grid_shape(self) -> tuple[int, ...]:
"""Number of chunks per dimension."""
return tuple(d.nchunks for d in self._dimensions)
@property
def chunk_shape(self) -> tuple[int, ...]:
"""Return the uniform chunk shape. Raises if grid is not regular."""
if not self.is_regular:
raise ValueError(
"chunk_shape is only available for regular chunk grids. "
"Use grid[coords] for per-chunk sizes."
)
return tuple(d.size for d in self._dimensions if isinstance(d, FixedDimension))
@property
def chunk_sizes(self) -> tuple[tuple[int, ...], ...]:
"""Per-dimension chunk sizes, including the final boundary chunk.
Returns the actual data size of each chunk (clipped at the array
extent), matching the dask ``Array.chunks`` convention. Works for
both regular and rectilinear grids.
Returns
-------
tuple[tuple[int, ...], ...]
One inner tuple per dimension, each containing the data size
of every chunk along that dimension.
"""
return tuple(tuple(d.data_size(i) for i in range(d.nchunks)) for d in self._dimensions)
# -- Collection interface --
def __getitem__(self, coords: int | tuple[int, ...]) -> ChunkSpec | None:
"""Return the ChunkSpec for a chunk at the given grid position, or None if OOB."""
if isinstance(coords, int):
coords = (coords,)
if len(coords) != self.ndim:
raise ValueError(
f"Expected {self.ndim} coordinate(s) for a {self.ndim}-d chunk grid, "
f"got {len(coords)}."
)
slices: list[slice] = []
codec_shape: list[int] = []
for dim, ix in zip(self._dimensions, coords, strict=True):
if ix < 0 or ix >= dim.nchunks:
return None
offset = dim.chunk_offset(ix)
slices.append(slice(offset, offset + dim.data_size(ix), 1))
codec_shape.append(dim.chunk_size(ix))
return ChunkSpec(tuple(slices), tuple(codec_shape))
def __iter__(self) -> Iterator[ChunkSpec]:
"""Iterate all chunks, yielding ChunkSpec for each."""
for coords in itertools.product(*(range(d.nchunks) for d in self._dimensions)):
spec = self[coords]
if spec is not None:
yield spec
def all_chunk_coords(
self,
*,
origin: Sequence[int] | None = None,
selection_shape: Sequence[int] | None = None,
) -> Iterator[tuple[int, ...]]:
"""Iterate over chunk coordinates, optionally restricted to a subregion.
Parameters
----------
origin : Sequence[int] | None
The first chunk coordinate to return. Defaults to the grid origin.
selection_shape : Sequence[int] | None
The number of chunks per dimension to iterate. Defaults to the
remaining extent from origin.
"""
if origin is None:
origin_parsed = (0,) * self.ndim
else:
origin_parsed = tuple(origin)
if selection_shape is None:
selection_shape_parsed = tuple(
g - o for o, g in zip(origin_parsed, self.grid_shape, strict=True)
)
else:
selection_shape_parsed = tuple(selection_shape)
ranges = tuple(
range(o, o + s) for o, s in zip(origin_parsed, selection_shape_parsed, strict=True)
)
return itertools.product(*ranges)
def iter_chunk_regions(
self,
*,
origin: Sequence[int] | None = None,
selection_shape: Sequence[int] | None = None,
) -> Iterator[tuple[slice, ...]]:
"""Iterate over the data regions (slices) spanned by each chunk.
Parameters
----------
origin : Sequence[int] | None
The first chunk coordinate to return. Defaults to the grid origin.
selection_shape : Sequence[int] | None
The number of chunks per dimension to iterate. Defaults to the
remaining extent from origin.
"""
for coords in self.all_chunk_coords(origin=origin, selection_shape=selection_shape):
spec = self[coords]
if spec is not None:
yield spec.slices
def get_nchunks(self) -> int:
return reduce(operator.mul, (d.nchunks for d in self._dimensions), 1)
# -- Resize --
def update_shape(self, new_shape: tuple[int, ...]) -> ChunkGrid:
"""Return a new ChunkGrid adjusted for *new_shape*.
For regular (FixedDimension) axes the extent is simply re-bound.
For varying (VaryingDimension) axes:
* **grow**: a new chunk whose size equals the growth is appended.
* **shrink**: trailing chunks that lie entirely beyond *new_shape* are
dropped; the last retained chunk is the one whose cumulative offset
first reaches or exceeds the new extent.
* **no change**: the dimension is kept as-is.
Raises
------
ValueError
If *new_shape* has the wrong number of dimensions.
"""
if len(new_shape) != self.ndim:
raise ValueError(
f"new_shape has {len(new_shape)} dimensions but "
f"chunk grid has {self.ndim} dimensions"
)
dims = tuple(
dim.resize(new_extent)
for dim, new_extent in zip(self._dimensions, new_shape, strict=True)
)
return ChunkGrid(dimensions=dims)
def _guess_chunks(
shape: tuple[int, ...] | int,
typesize: int,
*,
increment_bytes: int = 256 * 1024,
min_bytes: int = 128 * 1024,
max_bytes: int = 64 * 1024 * 1024,
) -> tuple[int, ...]:
"""
Iteratively guess an appropriate chunk layout for an array, given its shape and
the size of each element in bytes, and size constraints expressed in bytes. This logic is
adapted from h5py.
Parameters
----------
shape : tuple[int, ...]
The chunk shape.
typesize : int
The size, in bytes, of each element of the chunk.
increment_bytes : int = 256 * 1024
The number of bytes used to increment or decrement the target chunk size in bytes.
min_bytes : int = 128 * 1024
The soft lower bound on the final chunk size in bytes.
max_bytes : int = 64 * 1024 * 1024
The hard upper bound on the final chunk size in bytes.
Returns
-------
tuple[int, ...]
"""
if min_bytes >= max_bytes:
raise ValueError(f"Cannot have more min_bytes ({min_bytes}) than max_bytes ({max_bytes})")
if isinstance(shape, int):
shape = (shape,)
if typesize == 0:
return shape
ndims = len(shape)
# require chunks to have non-zero length for all dimensions
chunks = np.maximum(np.array(shape, dtype="=f8"), 1)
# Determine the optimal chunk size in bytes using a PyTables expression.
# This is kept as a float.
dset_size = np.prod(chunks) * typesize
target_size = increment_bytes * (2 ** np.log10(dset_size / (1024.0 * 1024)))
if target_size > max_bytes:
target_size = max_bytes
elif target_size < min_bytes:
target_size = min_bytes
idx = 0
while True:
# Repeatedly loop over the axes, dividing them by 2. Stop when:
# 1a. We're smaller than the target chunk size, OR
# 1b. We're within 50% of the target chunk size, AND
# 2. The chunk is smaller than the maximum chunk size
chunk_bytes = np.prod(chunks) * typesize
if (
chunk_bytes < target_size or abs(chunk_bytes - target_size) / target_size < 0.5
) and chunk_bytes < max_bytes:
break
if np.prod(chunks) == 1:
break # Element size larger than max_bytes
chunks[idx % ndims] = math.ceil(chunks[idx % ndims] / 2.0)
idx += 1
return tuple(int(x) for x in chunks)
def normalize_chunks(chunks: Any, shape: tuple[int, ...], typesize: int) -> tuple[int, ...]:
"""Convenience function to normalize the `chunks` argument for an array
with the given `shape`."""
# N.B., expect shape already normalized
# handle auto-chunking
if chunks is None or chunks is True:
return _guess_chunks(shape, typesize)
# handle no chunking
if chunks is False:
return shape
# handle 1D convenience form
if isinstance(chunks, numbers.Integral):
chunks = tuple(int(chunks) for _ in shape)
# handle dask-style chunks (iterable of iterables)
if all(isinstance(c, (tuple, list)) for c in chunks):
for i, c in enumerate(chunks):
if any(x != y for x, y in itertools.pairwise(c[:-1])) or (len(c) > 1 and c[-1] > c[0]):
raise ValueError(
f"Irregular chunk sizes in dimension {i}: {tuple(c)}. "
"Only uniform chunks (with an optional smaller final chunk) are supported."
)
chunks = tuple(c[0] for c in chunks)
# handle bad dimensionality
if len(chunks) > len(shape):
raise ValueError("too many dimensions in chunks")
# handle underspecified chunks
if len(chunks) < len(shape):
# assume chunks across remaining dimensions
chunks += shape[len(chunks) :]
# handle None or -1 in chunks
if -1 in chunks or None in chunks:
chunks = tuple(
s if c == -1 or c is None else int(c) for s, c in zip(shape, chunks, strict=False)
)
if not all(isinstance(c, numbers.Integral) for c in chunks):
raise TypeError("non integer value in chunks")
return tuple(int(c) for c in chunks)
def _guess_num_chunks_per_axis_shard(
chunk_shape: tuple[int, ...], item_size: int, max_bytes: int, array_shape: tuple[int, ...]
) -> int:
"""Generate the number of chunks per axis to hit a target max byte size for a shard.
For example, for a (2,2,2) chunk size and item size 4, maximum bytes of 256 would return 2.
In other words the shard would be a (2,2,2) grid of (2,2,2) chunks
i.e., prod(chunk_shape) * (returned_val * len(chunk_shape)) * item_size = 256 bytes.
Parameters
----------
chunk_shape
The shape of the (inner) chunks.
item_size
The item size of the data i.e., 2 for uint16.
max_bytes
The maximum number of bytes per shard to allow.
array_shape
The shape of the underlying array.
Returns
-------
The number of chunks per axis.
"""
bytes_per_chunk = np.prod(chunk_shape) * item_size
if max_bytes < bytes_per_chunk:
return 1
num_axes = len(chunk_shape)
chunks_per_shard = 1
# First check for byte size, second check to make sure we don't go bigger than the array shape
while (bytes_per_chunk * ((chunks_per_shard + 1) ** num_axes)) <= max_bytes and all(
c * (chunks_per_shard + 1) <= a for c, a in zip(chunk_shape, array_shape, strict=True)
):
chunks_per_shard += 1
return chunks_per_shard
def _auto_partition(
*,
array_shape: tuple[int, ...],
chunk_shape: tuple[int, ...] | Literal["auto"],
shard_shape: ShardsLike | None,
item_size: int,
) -> tuple[tuple[int, ...] | None, tuple[int, ...]]:
"""
Automatically determine the shard shape and chunk shape for an array, given the shape and dtype of the array.
If `shard_shape` is `None` and the chunk_shape is "auto", the chunks will be set heuristically based
on the dtype and shape of the array.
If `shard_shape` is "auto", then the shard shape will be set heuristically from the dtype and shape
of the array; if the `chunk_shape` is also "auto", then the chunks will be set heuristically as well,
given the dtype and shard shape. Otherwise, the chunks will be returned as-is.
"""
if shard_shape is None:
_shards_out: None | tuple[int, ...] = None
if chunk_shape == "auto":
_chunks_out = _guess_chunks(array_shape, item_size)
else:
_chunks_out = chunk_shape
else:
if chunk_shape == "auto":
# aim for a 1MiB chunk
_chunks_out = _guess_chunks(array_shape, item_size, max_bytes=1048576)
else:
_chunks_out = chunk_shape
if shard_shape == "auto":
_shards_out = ()
target_shard_size_bytes = zarr.config.get("array.target_shard_size_bytes", None)
if target_shard_size_bytes is None:
warnings.warn(
"Automatic shard shape inference is experimental and may change without notice."
"To set a target uncompressed shard size, use zarr.config.array.target_shard_size_bytes.",
ZarrUserWarning,
stacklevel=2,
)
num_chunks_per_shard_axis = (
_guess_num_chunks_per_axis_shard(
chunk_shape=_chunks_out,
item_size=item_size,
max_bytes=target_shard_size_bytes,
array_shape=array_shape,
)
if (has_auto_shard := (target_shard_size_bytes is not None))
else 2
)
for a_shape, c_shape in zip(array_shape, _chunks_out, strict=True):
# The previous heuristic was `a_shape // c_shape > 8` and now, with target_shard_size_bytes, we only check that the shard size is less than the array size.
can_shard_axis = a_shape // c_shape > 8 if not has_auto_shard else True
if can_shard_axis:
_shards_out += (c_shape * num_chunks_per_shard_axis,)
else:
_shards_out += (c_shape,)
elif isinstance(shard_shape, dict):
_shards_out = tuple(shard_shape["shape"])
else:
_shards_out = cast("tuple[int, ...]", shard_shape)
return _shards_out, _chunks_out