Skip to main content
Log in

Mojo function

eval_composed

eval_composed[composed_layout: ComposedLayout[Layout, Swizzle]](idx: UInt, offset: UInt = UInt(0)) -> UInt

Evaluate a composed layout with swizzle.

This function evaluates a composed layout consisting of a layout and a swizzle, with an optional offset. It calculates the final index by applying the layout, adding the offset, and then applying the swizzle.

Args:

  • idx (UInt): The input index to transform.
  • offset (UInt): An optional offset to apply between layouts (default: 0).

Returns:

The transformed index after applying both layouts.