Skip to main content
Log in

Mojo function

outer_product_acc

outer_product_acc(res: LayoutTensor[dtype, layout, origin, address_space=address_space, element_layout=element_layout, layout_bitwidth=layout_bitwidth, masked=masked, alignment=alignment], lhs: LayoutTensor[dtype, layout, origin, address_space=address_space, element_layout=element_layout, layout_bitwidth=layout_bitwidth, masked=masked, alignment=alignment], rhs: LayoutTensor[dtype, layout, origin, address_space=address_space, element_layout=element_layout, layout_bitwidth=layout_bitwidth, masked=masked, alignment=alignment])

Updates result tensor with the outer product of two vectors.

Computes res += outer(lhs, rhs) where lhs and rhs are vectors and res is a matrix.

Constraints:

All tensors must have statically known shapes. res must be rank 2. lhs and rhs must be rank 1. res.shape[0] == lhs.shape[0] and res.shape[1] == rhs.shape[0].

Args:

  • res (LayoutTensor[dtype, layout, origin, address_space=address_space, element_layout=element_layout, layout_bitwidth=layout_bitwidth, masked=masked, alignment=alignment]): The result matrix to accumulate into, shape (M, N).
  • lhs (LayoutTensor[dtype, layout, origin, address_space=address_space, element_layout=element_layout, layout_bitwidth=layout_bitwidth, masked=masked, alignment=alignment]): The left-hand side vector, shape (M,).
  • rhs (LayoutTensor[dtype, layout, origin, address_space=address_space, element_layout=element_layout, layout_bitwidth=layout_bitwidth, masked=masked, alignment=alignment]): The right-hand side vector, shape (N,).