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 プロセッサ) を初めて使用します。
valueに変換uint8x16_tしたい。int32x4_tそのために を使用しようとしましたが、うまくいきvreinterpret_s32_u8ませんでした。
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)