diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-10-13 14:55:20 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-10-13 14:55:20 +0900 |
commit | 14ae9bf4859739ca9b23f421d23693a15e75769d (patch) | |
tree | b24ebb716d4e158ca6c2d016e602096f6a82d3d3 /test | |
parent | 2818beeffd198dae543019347360252d0ea7b78f (diff) | |
download | xbyak-14ae9bf4859739ca9b23f421d23693a15e75769d.tar.gz xbyak-14ae9bf4859739ca9b23f421d23693a15e75769d.zip |
add vpdpbssd for avx10.2
Diffstat (limited to 'test')
-rw-r--r-- | test/avx10/misc.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/avx10/misc.txt b/test/avx10/misc.txt index 5c39e81..8993107 100644 --- a/test/avx10/misc.txt +++ b/test/avx10/misc.txt @@ -18,3 +18,15 @@ vmpsadbw(ym1, ym4, ptr[rax+128], 5); vmpsadbw(zm1|k4, zm3, zm15, 3); vmpsadbw(zm1, zm4, ptr[rax+128], 5); + +vpdpbssd(xm1, xm2, xm3); +vpdpbssd(xm1, xm2, ptr[rax+128]); +vpdpbssd(xm1, xm2, ptr_b[rax+128]); + +vpdpbssd(ym1, ym2, ym3); +vpdpbssd(ym1, ym2, ptr[rax+128]); +vpdpbssd(ym1, ym2, ptr_b[rax+128]); + +vpdpbssd(zm1, zm2, zm3); +vpdpbssd(zm1, zm2, ptr[rax+128]); +vpdpbssd(zm1, zm2, ptr_b[rax+128]); |