IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /max/get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /max/get-started.md).

Mojo function

conv_transpose_naive

def conv_transpose_naive[dtype: DType](output: TileTensor[dtype, Storage=output.Storage, address_space=output.address_space, linear_idx_type=output.linear_idx_type, element_size=output.element_size], input: TileTensor[dtype, Storage=input.Storage, address_space=input.address_space, linear_idx_type=input.linear_idx_type, element_size=input.element_size], filter: TileTensor[dtype, Storage=filter.Storage, address_space=filter.address_space, linear_idx_type=filter.linear_idx_type, element_size=filter.element_size], stride: IndexList[Int(3)], dilation: IndexList[Int(3)], pad_d: IndexList[Int(2)], pad_h: IndexList[Int(2)], pad_w: IndexList[Int(2)])

Implements the ConvTranspose operator from the MO spec.

Parameters:

  • ​dtype (DType): Type of the input, output, and kernel tensors.

Args: