-
Notifications
You must be signed in to change notification settings - Fork 530
Add doc for avx512 target features #1778
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
base: master
Are you sure you want to change the base?
Conversation
`avx512bw` | `avx512f` | [AVX512-BW] --- Advanced Vector Extensions 512-bit - Byte and Word Instructions | ||
`avx512cd` | `avx512f` | [AVX512-CD] --- Advanced Vector Extensions 512-bit - Conflict Detection Instructions | ||
`avx512dq` | `avx512f` | [AVX512-DQ] --- Advanced Vector Extensions 512-bit - Doubleword and Quadword Instructions | ||
`avx512f` | `avx2` | [AVX512-F] --- Advanced Vector Extensions 512-bit - Foundation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this include fma
and f16c
?
https://github.com/rust-lang/rust/blob/a15cce2690e8fab72422515c9dc02c6fbc506733/compiler/rustc_target/src/target_features.rs#L400
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, my mistake. Thanks for pointing it out
`avx512cd` | `avx512f` | [AVX512-CD] --- Advanced Vector Extensions 512-bit - Conflict Detection Instructions | ||
`avx512dq` | `avx512f` | [AVX512-DQ] --- Advanced Vector Extensions 512-bit - Doubleword and Quadword Instructions | ||
`avx512f` | `avx2` | [AVX512-F] --- Advanced Vector Extensions 512-bit - Foundation | ||
`avx512fp16` | `avx512bw`, `avx512dq` | [AVX512-FP16] --- Advanced Vector Extensions 512-bit - Float16 Extensions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this also include avx512vl
?
Adds some docs for avx512 target features in lieu of their stabilization in rust-lang/rust#138940.
Needs the FCP to complete before merge