tensorstore.IndexTransform.input_inclusive_max : tuple[int, ...]

Inclusive upper bound of the input domain.

Alias for the inclusive_max property of the domain.

Example

>>> transform = ts.IndexTransform(input_inclusive_min=[1, 2, 3],
...                               input_shape=[3, 4, 5])
>>> transform.input_inclusive_max
(3, 5, 7)