tropical_gemm_dispatch

Function tropical_gemm_dispatch 

Source
pub unsafe fn tropical_gemm_dispatch<T: TropicalSemiring + KernelDispatch>(
    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,
)
Expand description

Runtime-dispatched GEMM that selects the best kernel for the current CPU.

ยงSafety

Same requirements as tropical_gemm_inner