Expand description
General matrix-matrix multiplication (GEMM) kernels for GPU
Implements C = alpha * A * B + beta * C where:
- A is an M x K matrix
- B is a K x N matrix
- C is an M x N matrix
- alpha and beta are scalar values
Structs§
- Gemm
Kernel - General matrix-matrix multiplication kernel
Enums§
- Gemm
Impl - GEMM specialized implementation type