Skip to content

Commit 45aa0bd

Browse files
author
Daniel Smith
committed
Merge branch 'moar-avx512f-cmp' into avx-512-cmp
2 parents c5cec2d + 690a03c commit 45aa0bd

File tree

6 files changed

+990
-38
lines changed

6 files changed

+990
-38
lines changed

crates/core_arch/src/simd.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@ simd_ty!(i32x16[i32]:
198198
| x0, x1, x2, x3, x4, x5, x6, x7,
199199
x8, x9, x10, x11, x12, x13, x14, x15);
200200

201+
simd_ty!(u32x16[u32]:
202+
u32, u32, u32, u32, u32, u32, u32, u32,
203+
u32, u32, u32, u32, u32, u32, u32, u32
204+
| x0, x1, x2, x3, x4, x5, x6, x7,
205+
x8, x9, x10, x11, x12, x13, x14, x15);
206+
201207
simd_ty!(i64x8[i64]:
202208
i64, i64, i64, i64, i64, i64, i64, i64
203209
| x0, x1, x2, x3, x4, x5, x6, x7);

0 commit comments

Comments
 (0)