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

13 lines
303 B
Plaintext

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