diff options
| author | gingerBill <bill@gingerbill.org> | 2024-08-05 14:54:09 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-08-05 14:54:09 +0100 |
| commit | f56abf37804240c508f0ca7f249176208d333c72 (patch) | |
| tree | 7657f8f1e80ca46534c04e85cecde4877a444e98 /core/simd | |
| parent | 78919f85249a6136929be772319694cf6c1e4df1 (diff) | |
Add `intrinsics.masked_expand_load` and `intrinsics.masked_compress_store`
Diffstat (limited to 'core/simd')
| -rw-r--r-- | core/simd/simd.odin | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/simd/simd.odin b/core/simd/simd.odin index e93c94687..1f3c67b72 100644 --- a/core/simd/simd.odin +++ b/core/simd/simd.odin @@ -108,7 +108,8 @@ gather :: intrinsics.simd_gather scatter :: intrinsics.simd_scatter masked_load :: intrinsics.simd_masked_load masked_store :: intrinsics.simd_masked_store - +masked_expand_load :: intrinsics.simd_masked_expand_load +masked_compress_store :: intrinsics.simd_masked_compress_store // extract :: proc(a: #simd[N]T, idx: uint) -> T extract :: intrinsics.simd_extract |