Skip to content

Commit 7ea5712

Browse files
committed
Patch stdarch_verify to not check intel definition for new AMX intrinsics
1 parent 4bf9a90 commit 7ea5712

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

crates/stdarch-verify/tests/x86-intel.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,14 @@ fn verify_all_signatures() {
304304
if feature.contains("sse4a") || feature.contains("tbm") {
305305
continue;
306306
}
307+
308+
// FIXME: these have not been added to Intrinsics Guide yet
309+
if ["amx-avx512", "amx-fp8", "amx-movrs", "amx-tf32"]
310+
.iter()
311+
.any(|f| feature.contains(f))
312+
{
313+
continue;
314+
}
307315
}
308316

309317
let intel = match map.remove(rust.name) {

0 commit comments

Comments
 (0)