From 267b93ef0f5a895e38084e14e0125e97d9eb64d5 Mon Sep 17 00:00:00 2001 From: Kim Walisch Date: Sun, 10 Nov 2024 14:59:30 +0100 Subject: [PATCH] Update comment --- src/PreSieve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PreSieve.cpp b/src/PreSieve.cpp index 0fc78614..02322d84 100644 --- a/src/PreSieve.cpp +++ b/src/PreSieve.cpp @@ -80,7 +80,7 @@ void AND_PreSieveTables(const uint8_t* __restrict preSieved0, // Note that I also tried vectorizing this algorithm using AVX512 // which has 4x the vector width compared to SSE2, but this did // not provide any speedup. On average, this loop processes only - // 2192 bytes, hence there aren't many vector loop iterations and + // 956 bytes, hence there aren't many vector loop iterations and // by increasing the vector width this also increases the number of // scalar loop iterations after the vector loop finishes which // could potentially even become a bottleneck.