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

22 lines
298 B
C
Raw Normal View History

2022-10-04 13:56:31 +09:00
#include <immintrin.h>
#include <math.h>
float vectordot_naive(float *A, float *B, int N) {
float c = 0.f;
/*
2022-10-04 21:07:02 +09:00
TODO: FILL IN HERE
2022-10-04 13:56:31 +09:00
*/
return c;
}
float vectordot_fma(float *A, float *B, int N) {
/*
2022-10-04 21:07:02 +09:00
TODO: FILL IN HERE
2022-10-04 13:56:31 +09:00
*/
float c = 0.f;
/*
2022-10-04 21:07:02 +09:00
TODO: FILL IN HERE
2022-10-04 13:56:31 +09:00
*/
return c;
}