#include <stdio.h>#if defined(__riscv)# include <riscv_vector.h># define CV_RVV 1#endif#if defined CV_RVVinttest(){constfloatsrc[]={0.0f,0.0f,0.0f,0.0f};vfloat32m1_tval=vle32_v_f32m1((constfloat*)(src),4);return(int)vfmv_f_s_f32m1_f32(val);}#else#error "RISC-V vector extension(RVV) is not supported"#endifintmain(){printf("%d\n",test());return0;}