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

5 lines
112 B
C

#pragma once
float vectordot_naive(float *A, float *B, int N);
float vectordot_fma(float *A, float *B, int N);