pub unsafe fn tropical_gemm_inner<T: TropicalSemiring, K: Microkernel<T>>(
m: usize,
n: usize,
k: usize,
a: *const T::Scalar,
lda: usize,
trans_a: Transpose,
b: *const T::Scalar,
ldb: usize,
trans_b: Transpose,
c: *mut T,
ldc: usize,
params: &TilingParams,
kernel: &K,
)Expand description
Tropical GEMM with custom kernel and tiling parameters.
ยงSafety
Same requirements as tropical_gemm_portable