-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JDK 16 Vector API #47
Comments
That’s correct. Many schemes should benefit. |
@lemire, We have implemented bit unpacking with JDK 17/18 Vector API, below are the test results compared with Parquet-mr bit pack implementation shared with you |
If we could submit our code to this community? |
Yes. Please prepare a pull request if you can. |
Thanks @lemire, For this project, we are under the internal procedure of open sourcing, once it's done, we will prepare a pull request. |
@Fang-Xie I am looking forward to reading your code. |
JDK 16 introduces the Vector API for SIMD parallelism directly from Java code: https://docs.oracle.com/en/java/javase/16/docs/api/jdk.incubator.vector/jdk/incubator/vector/package-summary.html
My understanding is that since the original FastPFOR library takes advantage of SIMD, it should be possible to make this one as well. Is that correct?
The text was updated successfully, but these errors were encountered: