- tensorstore.ChunkLayout.inner_order : tuple[int, ...] | None
Permutation specifying the element storage order within the innermost chunks.
If the inner order is specified as a soft constraint rather than a hard constraint,
inner_order
is equal toNone
and the soft constraint is accessed viainner_order_soft_constraint
.Lexicographic order (i.e. C order/row-major order) is specified as
[0, 1, ..., rank-1]
, while colexicographic order (i.e. Fortran order/column-major order) is specified as[rank-1, ..., 1, 0]
.See also
JSON
ChunkLayout.inner_order
member