Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Apr 28, 2017
1 parent 500bfaf commit 73db84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/dotproductavx.cpp
Expand Up @@ -88,7 +88,7 @@ double DotProductAVX(const double* u, const double* v, int n) {
double result;
// _mm256_extract_f64 doesn't exist, but resist the temptation to use an sse
// instruction, as that introduces a 70 cycle delay. All this casting is to
// fool the instrinsics into thinking we are extracting the bottom int64.
// fool the intrinsics into thinking we are extracting the bottom int64.
auto cast_sum = _mm256_castpd_si256(sum);
*(reinterpret_cast<inT64*>(&result)) =
#if defined(_WIN32) || defined(__i386__)
Expand Down

0 comments on commit 73db84d

Please sign in to comment.