chundoong-lab-ta/SHPC2022/hw2_answer/vectordot/util.h

22 lines
407 B
C
Raw Normal View History

2022-10-04 13:56:31 +09:00
#pragma once
void timer_init();
void timer_start(int i);
double timer_stop(int i);
void alloc_array(float **m, int N);
void rand_array(float *m, int N);
void zero_array(float *m, int N);
void print_vec(float *m, int N);
void print_mat(float *m, int M, int N);
void check_vectordot(float *A, float *B, float candidate, int N);
void check_mat_mul(float *A, float *B, float *C, int M, int N, int K);