mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00:10:21 +08:00
16 lines
278 B
C++
16 lines
278 B
C++
|
#include <stdio.h>
|
||
|
#include <lsxintrin.h>
|
||
|
|
||
|
int test()
|
||
|
{
|
||
|
const float src[] = { 0.0f, 1.0f, 2.0f, 3.0f};
|
||
|
v4f32 val = (v4f32)__lsx_vld((const float*)(src), 0);
|
||
|
return __lsx_vpickve2gr_w(__lsx_vftint_w_s(val), 3);
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
printf("%d\n", test());
|
||
|
return 0;
|
||
|
}
|