mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
23 lines
404 B
23 lines
404 B
#include <stdio.h> |
|
|
|
#if defined(__riscv) |
|
# include <riscv_vector.h> |
|
# define CV_RVV 1 |
|
#endif |
|
|
|
#if defined CV_RVV |
|
int test() |
|
{ |
|
const float src[] = { 0.0f, 0.0f, 0.0f, 0.0f }; |
|
vfloat32m1_t val = vle32_v_f32m1((const float*)(src)); |
|
return (int)vfmv_f_s_f32m1_f32(val); |
|
} |
|
#else |
|
#error "RISC-V vector extension(RVV) is not supported" |
|
#endif |
|
|
|
int main() |
|
{ |
|
printf("%d\n", test()); |
|
return 0; |
|
}
|
|
|