Skip to main content
Log in

Mojo function

make_layout

make_layout[l1: Layout, l2: Layout](a: RuntimeLayout[l1, bitwidth=bitwidth], b: RuntimeLayout[l2, bitwidth=bitwidth]) -> RuntimeLayout[make_layout(l1, l2), bitwidth=bitwidth]

Combine two runtime layouts into a single composite layout.

This creates a new layout by concatenating the dimensions and strides of the input layouts.

Parameters:

  • l1 (Layout): The static layout type of a.
  • l2 (Layout): The static layout type of b.

Args:

  • a (RuntimeLayout[l1, bitwidth=bitwidth]): The first RuntimeLayout to combine.
  • b (RuntimeLayout[l2, bitwidth=bitwidth]): The second RuntimeLayout to combine.

Returns:

A new RuntimeLayout with dimensions from both input layouts.