chundoong-lab-ta/APWS23/matmul-skeleton/matmul_opt1.cu

13 lines
303 B
Plaintext

#include "matmul.h"
void matmul_opt1_initialize(size_t M, size_t N, size_t K) {
// TODO: Implement here
}
void matmul_opt1(float *A, float *B, float *C, size_t M, size_t N, size_t K) {
// TODO: Implement here
}
void matmul_opt1_finalize(size_t M, size_t N, size_t K) {
// TODO: Implement here
}