Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ Most others do not.
The Java Team at Intel (R) introduced the vector implementation for FastPFOR
based on the Java Vector API that showed significant gains over the
non-vectorized implementation. For an example usage, see
examples/vector/Example.java. The feature requires JDK 19+ and is currently for
advanced users.
examples/vector/Example.java. On aarch64 (e.g. Graviton3), use JDK 24 or
later: earlier releases lack the Vector API SVE intrinsics and run a fallback
that is slower than the scalar codec.

JavaFastPFOR as a dependency
------------------------
Expand Down
36 changes: 10 additions & 26 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,33 +90,17 @@
<configuration>
<source>21</source>
<target>21</target>
<compilerArgs>
<arg>--add-modules</arg>
<arg>jdk.incubator.vector</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--add-modules jdk.incubator.vector</argLine>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<excludes>
<exclude>me/lemire/integercompression/vector/*</exclude>
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
<!-- The vector module is experimental, currently only for advanced users. -->
<!--<execution>
<id>vector-fastpfor</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<release>29</release>
</configuration>
</execution> -->
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
Expand Down
Loading
Loading