Skip to content

Commit 73db84d

Browse files
committed
Fix typo in comment
Signed-off-by: Stefan Weil <[email protected]>
1 parent 500bfaf commit 73db84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/dotproductavx.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ double DotProductAVX(const double* u, const double* v, int n) {
8888
double result;
8989
// _mm256_extract_f64 doesn't exist, but resist the temptation to use an sse
9090
// 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.
91+
// fool the intrinsics into thinking we are extracting the bottom int64.
9292
auto cast_sum = _mm256_castpd_si256(sum);
9393
*(reinterpret_cast<inT64*>(&result)) =
9494
#if defined(_WIN32) || defined(__i386__)

0 commit comments

Comments
 (0)