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

5 lines
119 B
C
Raw Normal View History

2022-10-18 20:27:08 +09:00
#pragma once
void matmul(const float *A, const float *B, float *C, int M, int N, int K,
int num_threads);