From 73db84d674e0f204de42a2cf6dc138a597ac3fd3 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 23 Apr 2017 19:15:29 +0200 Subject: [PATCH] Fix typo in comment Signed-off-by: Stefan Weil --- arch/dotproductavx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/dotproductavx.cpp b/arch/dotproductavx.cpp index b2025b517d..d78feff7c6 100644 --- a/arch/dotproductavx.cpp +++ b/arch/dotproductavx.cpp @@ -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(&result)) = #if defined(_WIN32) || defined(__i386__)