Skip to content

Commit 0f02348

Browse files
s1ckknutwalker
andcommitted
Bump page size to 8k
Co-authored-by: Paul Horn <paul.horn@neotechnology.com>
1 parent 208883e commit 0f02348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/neo4j/gds/core/utils/paged/HugeAtomicGrowingBitSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class HugeAtomicGrowingBitSet {
3131
// Each page stores 2^PAGE_SHIFT_BITS entries.
3232
// Word-size is 64 bit (long), which means we
3333
// store 2^(PAGE_SHIFT_BITS - 6) words per page.
34-
static final int PAGE_SHIFT_BITS = 14;
34+
static final int PAGE_SHIFT_BITS = 16;
3535
// Number of bits per word (long).
3636
private static final int NUM_BITS = Long.SIZE;
3737
private static final int BIT_MASK = NUM_BITS - 1;

0 commit comments

Comments
 (0)