Skip to main content
Log in

Mojo function

idx2crd

idx2crd[: ImmutableOrigin, : ImmutableOrigin, : ImmutableOrigin, //, idx_t: IntTuple[$2], shape_t: IntTuple[$1], stride_t: IntTuple[$0]](idx: RuntimeTuple[idx_t, element_bitwidth=element_bitwidth, unsigned=unsigned], shape: RuntimeTuple[shape_t, element_bitwidth=element_bitwidth, unsigned=unsigned], stride: RuntimeTuple[stride_t, element_bitwidth=element_bitwidth, unsigned=unsigned]) -> RuntimeTuple[idx2crd[::Origin[::Bool(idx_t, shape_t, stride_t), element_bitwidth=element_bitwidth, unsigned=unsigned]

Converts a linear index to multi-dimensional coordinates.

This function transforms a flat index into coordinate values based on the provided shape and stride information. This is essential for mapping linear memory accesses to multi-dimensional tensor elements.

Constraints:

The index must be a scalar value (not a tuple).

Parameters:

  • idx_t (IntTuple[$2]): IntTuple type of the index.
  • shape_t (IntTuple[$1]): IntTuple type of the shape.
  • stride_t (IntTuple[$0]): IntTuple type of the stride.

Args:

  • idx (RuntimeTuple[idx_t, element_bitwidth=element_bitwidth, unsigned=unsigned]): The linear index to convert.
  • shape (RuntimeTuple[shape_t, element_bitwidth=element_bitwidth, unsigned=unsigned]): The shape of the multi-dimensional array.
  • stride (RuntimeTuple[stride_t, element_bitwidth=element_bitwidth, unsigned=unsigned]): The stride values for each dimension.

Returns:

A RuntimeTuple containing the multi-dimensional coordinates.

idx2crd[: ImmutableOrigin, : ImmutableOrigin, //, idx_t: IntTuple[$1], shape_t: IntTuple[$0]](idx: RuntimeTuple[idx_t, element_bitwidth=element_bitwidth, unsigned=unsigned], shape: RuntimeTuple[shape_t, element_bitwidth=element_bitwidth, unsigned=unsigned]) -> RuntimeTuple[idx2crd[::Origin[::Bool(idx_t, shape_t, prefix_product[::Origin[::Bool(shape_t)), element_bitwidth=element_bitwidth, unsigned=unsigned]

Converts a linear index to multi-dimensional coordinates using shape-derived strides.

This is a convenience overload of idx2crd that automatically calculates the stride values from the shape using prefix_product. This is the common case for row-major storage order tensors.

Parameters:

  • idx_t (IntTuple[$1]): IntTuple type of the index.
  • shape_t (IntTuple[$0]): IntTuple type of the shape.

Args:

  • idx (RuntimeTuple[idx_t, element_bitwidth=element_bitwidth, unsigned=unsigned]): The linear index to convert.
  • shape (RuntimeTuple[shape_t, element_bitwidth=element_bitwidth, unsigned=unsigned]): The shape of the multi-dimensional array.

Returns:

A RuntimeTuple containing the multi-dimensional coordinates calculated using automatically derived strides from the shape.