Skip to content
New issue

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

Optimize is_total_slice for chunksize == 1 #2782

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/2782.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Optimize full chunk writes
11 changes: 7 additions & 4 deletions src/zarr/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1373,10 +1373,13 @@ def is_total_slice(item: Selection, shape: ChunkCoords) -> bool:
item = (item,)
if isinstance(item, tuple):
return all(
isinstance(dim_sel, slice)
and (
(dim_sel == slice(None))
or ((dim_sel.stop - dim_sel.start == dim_len) and (dim_sel.step in [1, None]))
(isinstance(dim_sel, int) and dim_len == 1)
or (
isinstance(dim_sel, slice)
and (
(dim_sel == slice(None))
or ((dim_sel.stop - dim_sel.start == dim_len) and (dim_sel.step in [1, None]))
)
)
for dim_sel, dim_len in zip(item, shape, strict=False)
)
Expand Down
9 changes: 9 additions & 0 deletions tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import re
from itertools import accumulate
from typing import TYPE_CHECKING, Any, Literal
from unittest import mock

import numcodecs
import numpy as np
Expand Down Expand Up @@ -1328,3 +1329,11 @@ async def test_scalar_array() -> None:
assert arr[...] == 1.5
assert arr[()] == 1.5
assert arr.shape == ()


async def test_orthogonal_set_total_slice() -> None:
"""Ensure that a whole chunk overwrite does not read chunks"""
store = MemoryStore()
array = zarr.create_array(store, shape=(20, 20), chunks=(1, 2), dtype=int, fill_value=-1)
with mock.patch("zarr.storage.MemoryStore.get", side_effect=ValueError):
array[0, slice(4, 10)] = np.arange(6)
6 changes: 6 additions & 0 deletions tests/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
OrthogonalSelection,
Selection,
_iter_grid,
is_total_slice,
make_slice_selection,
normalize_integer_selection,
oindex,
Expand Down Expand Up @@ -1953,3 +1954,8 @@ def test_vectorized_indexing_incompatible_shape(store) -> None:
)
with pytest.raises(ValueError, match="Attempting to set"):
arr[np.array([1, 2]), np.array([1, 2])] = np.array([[-1, -2], [-3, -4]])


def test_is_total_slice():
assert is_total_slice((0, slice(4, 6)), (1, 2))
assert is_total_slice((slice(0, 1, None), slice(4, 6)), (1, 2))