We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 500bfaf commit 73db84dCopy full SHA for 73db84d
arch/dotproductavx.cpp
@@ -88,7 +88,7 @@ double DotProductAVX(const double* u, const double* v, int n) {
88
double result;
89
// _mm256_extract_f64 doesn't exist, but resist the temptation to use an sse
90
// instruction, as that introduces a 70 cycle delay. All this casting is to
91
- // fool the instrinsics into thinking we are extracting the bottom int64.
+ // fool the intrinsics into thinking we are extracting the bottom int64.
92
auto cast_sum = _mm256_castpd_si256(sum);
93
*(reinterpret_cast<inT64*>(&result)) =
94
#if defined(_WIN32) || defined(__i386__)
0 commit comments