Vowpal Wabbit
primitives.h
Go to the documentation of this file.
1 #ifdef _WIN32
2 #define NOMINMAX
3 #include <immintrin.h>
4 
5 // typedef float(*sum_of_squares_func)(float*, float*);
6 //
7 // sum_of_squares_func get_sum_of_squares();
8 
9 float sum_of_squares(float* begin, float* end);
10 
11 // float sum_of_squares_avx(float* begin, float* end);
12 // float sum_of_squares_avx2(float* begin, float* end);
13 
14 #endif
float sum_of_squares(float *begin, float *end)
Definition: primitives.cc:25