Spike, a RISC-V ISA Simulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
206 B

// vqdotu.vv vd, vs2, vs1, vm
#include "vqdot_common.h"
require_extension(EXT_ZVQDOTQ);
require(P.VU.vsew == e32);
VI_VV_LOOP
({
VQDOT(vs1, vs2, uint8_t, uint8_t);
vd = (vd + result) & 0xffffffff;
})