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

13 lines
306 B
Plaintext

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