4 lines
103 B
C
4 lines
103 B
C
|
#pragma once
|
||
|
|
||
|
void mat_mul(float *_A, float *_B, float *_C, int _M, int _N, int _K, int _num_threads);
|