chundoong-lab-ta/SHPC2022/hw2/vectordot/vectordot.h

5 lines
112 B
C
Raw Normal View History

2022-10-04 13:56:31 +09:00
#pragma once
float vectordot_naive(float *A, float *B, int N);
float vectordot_fma(float *A, float *B, int N);