-
Notifications
You must be signed in to change notification settings - Fork 829
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
Re-evaluate Explicit SIMD Aggregations #5032
Comments
@tustvold I must have missed or forgotten that the |
Correct, it would definitely simplify things to no longer have nightly only functionality |
|
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
We currently only have explicit SIMD kernels for min, max and sum. This is a non-trivial additional complexity, and relies on features not present in stable Rust.
Describe the solution you'd like
Historically LLVM has struggled with auto-vectorisation of horizontal operations like aggregates, and this has been why we've kept these kernels, however, it is possible this has since improved. We should assess whether it is possible to eliminate the need for explicit SIMD kernels, and potentially remove them
Describe alternatives you've considered
Additional context
#4560 contains some experiments for improving the auto-vectorisation of aggregates
The text was updated successfully, but these errors were encountered: