Add the avx10.1 and avx10.2 target features
This commit is contained in:
@@ -391,6 +391,26 @@ static X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
|
||||
("amx-tile", Unstable(sym::x86_amx_intrinsics), &[]),
|
||||
("amx-transpose", Unstable(sym::x86_amx_intrinsics), &["amx-tile"]),
|
||||
("avx", Stable, &["sse4.2"]),
|
||||
(
|
||||
"avx10.1",
|
||||
Unstable(sym::avx10_target_feature),
|
||||
&[
|
||||
"avx512bf16",
|
||||
"avx512bitalg",
|
||||
"avx512bw",
|
||||
"avx512cd",
|
||||
"avx512dq",
|
||||
"avx512f",
|
||||
"avx512fp16",
|
||||
"avx512ifma",
|
||||
"avx512vbmi",
|
||||
"avx512vbmi2",
|
||||
"avx512vl",
|
||||
"avx512vnni",
|
||||
"avx512vpopcntdq",
|
||||
],
|
||||
),
|
||||
("avx10.2", Unstable(sym::avx10_target_feature), &["avx10.1"]),
|
||||
("avx2", Stable, &["avx"]),
|
||||
("avx512bf16", Unstable(sym::avx512_target_feature), &["avx512bw"]),
|
||||
("avx512bitalg", Unstable(sym::avx512_target_feature), &["avx512bw"]),
|
||||
|
||||
Reference in New Issue
Block a user