You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 25, 2022. It is now read-only.
I think we could maybe enable all features up to avx2 and AES. AES is in use by ahash which will improve performance in hash joins and hash aggregates. Other features improve overall performance, e.g. in kernels, parquet reader, and DataFusion code.
Rust by default compiles towards a very old architecture, which limit the performance of the.
We should probably update this with a newer
An example of Polars usage:
https://github.com/pola-rs/polars/blob/master/.github/deploy_manylinux.sh#L11
There are a bit of stats over here:
https://store.steampowered.com/hwsurvey
SSE2100.00%
SSE3100.00%
LAHF / SAHF99.99%
CMPXCHG16B99.98%
SSSE399.27%
SSE4.198.89%
SSE4.298.50%
FCMOV97.23%
NTFS96.06%
AES95.50%
AVX94.38%
AVX286.31%
I think we could maybe enable all features up to
avx2andAES. AES is in use byahashwhich will improve performance in hash joins and hash aggregates. Other features improve overall performance, e.g. in kernels, parquet reader, and DataFusion code.