Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 NEON 内在函数(A9 处理器)的新手。
我想转换uint8x16_t为int32x4_tvalue 。我尝试使用vreinterpret_s32_u8to 这样做,但没有奏效。
uint8x16_t
int32x4_t
vreinterpret_s32_u8
谁能指导我?非常感谢您的帮助。
8x16 = 128,需要对四字向量进行操作。
vreinterpret{q}_dsttype_srctype 在哪里: q 指定转换对 128 位向量进行。如果不存在,则转换对 64 位向量进行。
vreinterpret{q}_dsttype_srctype
在哪里:
q
指定转换对 128 位向量进行。如果不存在,则转换对 64 位向量进行。
应该是哪个
int32x4_t vreinterpret q _s32_u8 (uint8x16_t __a)