#ifndef HPC_GEMM_REFCOLMAJOR_H #define HPC_GEMM_REFCOLMAJOR_H 1 #include "ulmblas.h" namespace refColMajor { template void gemm(Index m, Index n, Index k, T alpha, const T *A, Index incRowA, Index incColA, const T *B, Index incRowB, Index incColB, T beta, T *C, Index incRowC, Index incColC) { ulmBLAS::gescal(m, n, beta, C, incRowC, incColC); for (Index j=0; j