Skip to content

Commit 4f97671

Browse files
committed
Minor changes to the README file.
1 parent d9aa5d2 commit 4f97671

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ A vector implementation for the JavaFastPFOR Algorithm
33
This project offers a vector implementation for Lemire's [JavaFastPFOR](https://github.com/lemire/JavaFastPFOR) integer compression algorithm based on ``jdk.incubator.vector``.
44

55
The implementation offers three classes:
6-
1. VectorBitPacker -- a vectorized implementation of bit packing mirroring [BitPacking.java](https://github.com/lemire/JavaFastPFOR/blob/master/src/main/java/me/lemire/integercompression/BitPacking.java).
7-
2. VectorBitPackerTerse -- a shorter version of VectorBitPacker but with more branch instructions (and less efficient).
8-
3. VectorFastPFOR -- is the vector equivalent for [FastPFOR](https://github.com/lemire/JavaFastPFOR/blob/master/src/main/java/me/lemire/integercompression/FastPFOR.java). Uses a 256 BLOCK_SIZE.
6+
1. ``VectorBitPacker`` -- a vectorized implementation of bit packing mirroring[BitPacking.java](https://github.com/lemire/JavaFastPFOR/blob/master/src/main/java/me/lemire/integercompression/BitPacking.java). Auto-generated from ``VectorBitPackerTerse``. Uses less branch instructions and is recommended for use.
7+
2. ``VectorBitPackerTerse`` -- a shorter version of VectorBitPacker but with more branch instructions (and less efficient).
8+
3. ``VectorFastPFOR`` -- is the vector equivalent for [FastPFOR](https://github.com/lemire/JavaFastPFOR/blob/master/src/main/java/me/lemire/integercompression/FastPFOR.java). Uses a 256 BLOCK_SIZE.
99

1010
Requirements
1111
-----------------

0 commit comments

Comments
 (0)