Class ForUtil
java.lang.Object
org.apache.lucene.codecs.lucene101.ForUtil
Inspired from https://fulmicoton.com/posts/bitpacking/ Encodes multiple integers in one to get
SIMD-like speedups. If bitsPerValue <= 8 then we pack 4 ints per Java int else if bitsPerValue
<= 16 we pack 2 ints per Java int else we do scalar operations.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
BLOCK_SIZE
public static final int BLOCK_SIZE- See Also:
-
-
Constructor Details
-
ForUtil
public ForUtil()
-