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

5 lines
119 B
C
Raw Normal View History

2023-06-17 01:55:02 +09:00
#pragma once
void matmul(const float *A, const float *B, float *C, int M, int N, int K,
int num_threads);