chundoong-lab-ta/SamsungDS22/submissions/HW4/jongho62.kim/mat_mul.h

5 lines
152 B
C
Raw Normal View History

2022-09-29 18:01:45 +09:00
#pragma once
void mat_mul(float *_A, float *_B, float *_C, int _M, int _N, int _K,
int _num_threads, int _mpi_rank, int _mpi_world_size);