chundoong-lab-ta/SHPC2022/hw2_answer/matmul/matmul.h

5 lines
119 B
C
Raw Normal View History

2022-10-04 13:56:31 +09:00
#pragma once
2022-10-04 21:07:02 +09:00
void matmul(const float *A, const float *B, float *C, int M, int N, int K,
int num_threads);