Arm neon 上的 Altivec vec_all_gt 等效项
我正在将应用程序从 Altivec 移植到 Neon。
我在 Altivec 中看到很多返回标量值的内在函数。
ARM 上有这样的内在函数吗?
例如 vec_all_gt
I am porting an application from Altivec to Neon.
I see a lot of intrinsics in Altivec which return scalar values.
Do we have any such intrinsics on ARM ?
For instance vec_all_gt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有给出标量比较结果的内在函数。这是因为 SIMD 比较的常见模式是使用无分支通道屏蔽和条件选择来复用结果,而不是基于分支的控制流。
如果您需要它们,您可以构建它们......
此时您可以定义
any()
(掩码非零)和all()
(掩码为 0xF)如果您需要分支逻辑,请进行比较。There are no intrinsics that give scalar comparison results. This is because the common pattern for SIMD comparisons is to use branchless lane-masking and conditional selects to multiplex results, not branch-based control flow.
You can build them if you need them though ...
... at which point you can define
any()
(mask is non-zero) andall()
(mask is 0xF) comparisons if you need branchy logic.