Do these instructions use vxrm?
No. FP arithmetic and conversions use frm or an instruction-specified fixed rounding mode; vxrm is for fixed-point rounding instructions.
Multiply narrow floating-point operands and write the widened 2*SEW result to vd.
VFWMUL.VF is widening floating-point multiply, not an accumulate instruction. f[rs1] is multiplied by vs2[i]. The result is written to vd at 2*SEW width. Vector FP32/FP64 operation requires the corresponding scalar F/D support; FP16 is controlled by the relevant vector half-precision extensions, and the base V extension does not automatically include half-precision arithmetic.
VFWMUL.VF is only widening multiply: narrow inputs are multiplied and the wide result is written to vd.
Understand this scenario with real code like «vsetvli t0, a0, e16, m1, ta, ma vfwmul.vf v2, ft0, v4».
Understand this scenario with real code like «vsetvli t0, a0, e16, m1, ta, ma vfwmul.vf v2, ft0, v4».
No. FP arithmetic and conversions use frm or an instruction-specified fixed rounding mode; vxrm is for fixed-point rounding instructions.