Skip to content

Commit 1157b78

Browse files
committed
Remove avx512dq and avx512vl implication for avx512fp16
1 parent b45dd71 commit 1157b78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/target_features.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ static X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
398398
("avx512cd", Unstable(sym::avx512_target_feature), &["avx512f"]),
399399
("avx512dq", Unstable(sym::avx512_target_feature), &["avx512f"]),
400400
("avx512f", Unstable(sym::avx512_target_feature), &["avx2", "fma", "f16c"]),
401-
("avx512fp16", Unstable(sym::avx512_target_feature), &["avx512bw", "avx512vl", "avx512dq"]),
401+
("avx512fp16", Unstable(sym::avx512_target_feature), &["avx512bw"]),
402402
("avx512ifma", Unstable(sym::avx512_target_feature), &["avx512f"]),
403403
("avx512vbmi", Unstable(sym::avx512_target_feature), &["avx512bw"]),
404404
("avx512vbmi2", Unstable(sym::avx512_target_feature), &["avx512bw"]),

0 commit comments

Comments
 (0)