chundoong-lab-ta/APSS23/transpose/util.h

14 lines
244 B
C
Raw Normal View History

2023-08-09 15:11:42 +09:00
#pragma once
double get_time();
void check_transpose(float *A, float *B, int M, int N);
void print_mat(float *m, int R, int C);
float* alloc_mat(int R, int C);
void rand_mat(float *m, int R, int C);
void zero_mat(float *m, int R, int C);