Skip to content

Commit 7ac91a2

Browse files
committed
🐛 Fix de-duplication from prel31 offsets
1 parent 8935c8c commit 7ac91a2

File tree

7 files changed

+813
-389
lines changed

7 files changed

+813
-389
lines changed

benchmark/nearpoint.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ std::array<std::uint32_t, 18> const _normal_table_data = {
2323
(0 << 11) | 1, // Block(start=0, count=1)
2424
(1 << 11) | 1, // Block(start=1, count=1)
2525
(1 << 11) | 1, // Block(start=1, count=1)
26-
(2 << 11) | 2, // Block(start=2, count=2)
27-
(3 << 11) | 3, // Block(start=3, count=3)
28-
(5 << 11) | 3, // Block(start=5, count=3)
29-
(7 << 11) | 7, // Block(start=7, count=7)
30-
(13 << 11) | 14, // Block(start=13, count=14)
31-
(26 << 11) | 20, // Block(start=26, count=20)
32-
(45 << 11) | 27, // Block(start=45, count=27)
33-
(71 << 11) | 28, // Block(start=71, count=28)
34-
(98 << 11) | 31, // Block(start=98, count=31)
35-
(128 << 11) | 27, // Block(start=128, count=27)
26+
(1 << 11) | 1, // Block(start=1, count=1)
27+
(3 << 11) | 2, // Block(start=3, count=2)
28+
(5 << 11) | 2, // Block(start=5, count=2)
29+
(7 << 11) | 8, // Block(start=7, count=8)
30+
(15 << 11) | 20, // Block(start=15, count=20)
31+
(35 << 11) | 25, // Block(start=35, count=25)
32+
(60 << 11) | 27, // Block(start=60, count=27)
33+
(87 << 11) | 29, // Block(start=87, count=29)
34+
(116 << 11) | 30, // Block(start=116, count=30)
35+
(146 << 11) | 28, // Block(start=146, count=28)
3636
};
3737

3838
} // namespace

0 commit comments

Comments
 (0)