diff options
Diffstat (limited to 'riscv/insns/vqdot_vx.h')
-rw-r--r-- | riscv/insns/vqdot_vx.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/riscv/insns/vqdot_vx.h b/riscv/insns/vqdot_vx.h new file mode 100644 index 0000000..6143b90 --- /dev/null +++ b/riscv/insns/vqdot_vx.h @@ -0,0 +1,11 @@ +// vqdot.vx vd, vs2, rs1, vm +#include "vqdot_common.h" + +require_extension(EXT_ZVQDOTQ); +require(P.VU.vsew == e32); + +VI_VX_LOOP +({ + VQDOT(rs1, vs2, int8_t, int8_t); + vd = (vd + result) & 0xffffffff; +}) |