From c4d30a88308c4b5e4eb05abdb9f3188ae7eba582 Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Thu, 18 Apr 2024 21:59:03 +0000 Subject: Increase roll out of hamming distance from 2 to 3. --- vespalib/src/vespa/vespalib/util/binary_hamming_distance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vespalib') diff --git a/vespalib/src/vespa/vespalib/util/binary_hamming_distance.cpp b/vespalib/src/vespa/vespalib/util/binary_hamming_distance.cpp index 5f242059ccf..3f19394ecbb 100644 --- a/vespalib/src/vespa/vespalib/util/binary_hamming_distance.cpp +++ b/vespalib/src/vespa/vespalib/util/binary_hamming_distance.cpp @@ -6,7 +6,7 @@ namespace vespalib { namespace { constexpr uint8_t WORD_SZ = sizeof (uint64_t); - constexpr uint8_t UNROLL_CNT = 2; + constexpr uint8_t UNROLL_CNT = 3; static_assert(sizeof(uint64_t) == 8); } size_t -- cgit v1.2.3