Skip to main content

Mojo module

conv_config

Configuration types for SM100 structured convolution kernels.

This module provides:

  • Conv2dProblemShape: Defines the convolution problem geometry
  • Conv2dConfig: Kernel configuration (tile sizes, pipeline depths, etc.)

The convolution is mapped to GEMM as implicit im2col:

  • M = N_batch * H_out * W_out (output spatial)
  • N = K_filters (output channels)
  • K = C_in * R * S (input channels * filter spatial)

Structsโ€‹

Was this page helpful?