14 lines
276 B
C
14 lines
276 B
C
|
#pragma once
|
||
|
|
||
|
double get_current_time();
|
||
|
|
||
|
void alloc_mat(float **m, int R, int S);
|
||
|
|
||
|
void rand_mat(float *m, int R, int S);
|
||
|
|
||
|
void zero_mat(float *m, int R, int S);
|
||
|
|
||
|
void print_mat(float *m, int M, int N);
|
||
|
|
||
|
void check_mat_mul(float *A, float *B, float *C, int M, int N, int K);
|