#ifndef GEMM_COMMON_HPP #define GEMM_COMMON_HPP enum GemmMatrixLayout { MK_KN_MN, // 0 MK_NK_MN, // 1 KM_KN_MN, // 2 KM_NK_MN, // 3 }; #endif