diff options
| author | Yann Simon <yann.simon@commercetools.com> | 2023-01-26 11:01:36 +0100 |
|---|---|---|
| committer | Yann Simon <yann.simon@commercetools.com> | 2023-01-26 11:01:44 +0100 |
| commit | a499862948371bbbcc534ca8d7a20cb107ce9952 (patch) | |
| tree | 86dd7cd4157a7aff718c9e36e2340dd9c20c970a | |
| parent | a53872388e03b4712a6c3d8a865e8cb214dab532 (diff) | |
| download | rust-a499862948371bbbcc534ca8d7a20cb107ce9952.tar.gz rust-a499862948371bbbcc534ca8d7a20cb107ce9952.zip | |
remove avx512 prefix for gfni, vaes and vpclmulqdq
| -rw-r--r-- | library/std/tests/run-time-detect.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/tests/run-time-detect.rs b/library/std/tests/run-time-detect.rs index 7fbfe3daaa8..c25c3f84d2b 100644 --- a/library/std/tests/run-time-detect.rs +++ b/library/std/tests/run-time-detect.rs @@ -120,16 +120,16 @@ fn x86_all() { println!("avx512dq: {:?}", is_x86_feature_detected!("avx512dq")); println!("avx512er: {:?}", is_x86_feature_detected!("avx512er")); println!("avx512f: {:?}", is_x86_feature_detected!("avx512f")); - println!("avx512gfni: {:?}", is_x86_feature_detected!("avx512gfni")); + println!("gfni: {:?}", is_x86_feature_detected!("gfni")); println!("avx512ifma: {:?}", is_x86_feature_detected!("avx512ifma")); println!("avx512pf: {:?}", is_x86_feature_detected!("avx512pf")); - println!("avx512vaes: {:?}", is_x86_feature_detected!("avx512vaes")); + println!("vaes: {:?}", is_x86_feature_detected!("vaes")); println!("avx512vbmi2: {:?}", is_x86_feature_detected!("avx512vbmi2")); println!("avx512vbmi: {:?}", is_x86_feature_detected!("avx512vbmi")); println!("avx512vl: {:?}", is_x86_feature_detected!("avx512vl")); println!("avx512vnni: {:?}", is_x86_feature_detected!("avx512vnni")); println!("avx512vp2intersect: {:?}", is_x86_feature_detected!("avx512vp2intersect")); - println!("avx512vpclmulqdq: {:?}", is_x86_feature_detected!("avx512vpclmulqdq")); + println!("vpclmulqdq: {:?}", is_x86_feature_detected!("vpclmulqdq")); println!("avx512vpopcntdq: {:?}", is_x86_feature_detected!("avx512vpopcntdq")); println!("avx: {:?}", is_x86_feature_detected!("avx")); println!("bmi1: {:?}", is_x86_feature_detected!("bmi1")); |
