diff options
| author | sayantn <sayantn05@gmail.com> | 2025-05-17 22:32:23 +0530 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2025-05-17 17:43:54 +0000 |
| commit | 806848f01eff7b602718455d1d7dd5734e875087 (patch) | |
| tree | f3b994501f0c52a316ddf15b96dfbec99ce7afcb | |
| parent | 98c4ba97836e4ef9864a218cec06251a856f2ea4 (diff) | |
| download | rust-806848f01eff7b602718455d1d7dd5734e875087.tar.gz rust-806848f01eff7b602718455d1d7dd5734e875087.zip | |
Correct rustc version for the stabilization of runtime detection of VEX variants of avx512
| -rw-r--r-- | library/stdarch/crates/std_detect/src/detect/arch/x86.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs index 1f8f79f8d6e..85d4fa7179e 100644 --- a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs +++ b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs @@ -203,15 +203,15 @@ features! { /// AVX-512 P2INTERSECT @FEATURE: #[stable(feature = "simd_x86", since = "1.27.0")] avx512fp16: "avx512fp16"; /// AVX-512 FP16 (FLOAT16 instructions) - @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.88.0")] avxifma: "avxifma"; + @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.89.0")] avxifma: "avxifma"; /// AVX-IFMA (Integer Fused Multiply Add) - @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.88.0")] avxneconvert: "avxneconvert"; + @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.89.0")] avxneconvert: "avxneconvert"; /// AVX-NE-CONVERT (Exceptionless Convert) - @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.88.0")] avxvnni: "avxvnni"; + @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.89.0")] avxvnni: "avxvnni"; /// AVX-VNNI (Vector Neural Network Instructions) - @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.88.0")] avxvnniint16: "avxvnniint16"; + @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.89.0")] avxvnniint16: "avxvnniint16"; /// AVX-VNNI_INT8 (VNNI with 16-bit Integers) - @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.88.0")] avxvnniint8: "avxvnniint8"; + @FEATURE: #[stable(feature = "avx512_target_feature", since = "1.89.0")] avxvnniint8: "avxvnniint8"; /// AVX-VNNI_INT16 (VNNI with 8-bit integers) @FEATURE: #[unstable(feature = "x86_amx_intrinsics", issue = "126622")] amx_tile: "amx-tile"; /// AMX (Advanced Matrix Extensions) - Tile load/store |
