more intrinsics

This commit is contained in:
nora 2024-01-06 00:20:13 +01:00
parent 9e4ce7913a
commit 10b9cefe24
4 changed files with 288 additions and 42 deletions

View file

@ -89,9 +89,13 @@ fn main() -> Result<()> {
}
const INTRINSICS_GENERATE: &[&str] = &[
"_mm_setr_epi8",
"_mm_setr_epi16",
"_mm_setr_epi32",
"_mm_set_epi64x",
// packing instructions
"_mm_packus_epi16",
"_mm_packs_epi16",
"_mm_packus_epi32",
"_mm_packs_epi32",
"_mm_setr_epi16",
];