mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-01 07:59:05 +08:00
Fix typo in comment
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
500bfaf315
commit
73db84d674
@ -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__)
|
||||
|
Loading…
Reference in New Issue
Block a user