Arm neon 上的 Altivec vec_all_gt 等效项

发布于 2025-01-16 05:58:13 字数 114 浏览 0 评论 0原文

我正在将应用程序从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韵柒 2025-01-23 05:58:13

没有给出标量比较结果的内在函数。这是因为 SIMD 比较的常见模式是使用无分支通道屏蔽和条件选择来复用结果,而不是基于分支的控制流。

如果您需要它们,您可以构建它们......

// Do a comparison of e.g. two vectors of floats
uint32x4_t compare = vcgeq_f32(a, b)

// Shift all compares down to a single bit in the LSB of each lane, other bits zero
uint32x4_t tmp = vshrq_n_u32(a.m, 31);

// Shift compare results up so lane 0 = bit 0, lane 1 = bit 1, etc.
static const int shifta[4] { 0, 1, 2, 3 };
static const int32x4_t shift = vld1q_s32(shifta);
tmp = vshlq_u32(tmp, shift)

// Horizontal add across the vector to merge the result into a scalar
return vaddvq_u32();

此时您可以定义 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 ...

// Do a comparison of e.g. two vectors of floats
uint32x4_t compare = vcgeq_f32(a, b)

// Shift all compares down to a single bit in the LSB of each lane, other bits zero
uint32x4_t tmp = vshrq_n_u32(a.m, 31);

// Shift compare results up so lane 0 = bit 0, lane 1 = bit 1, etc.
static const int shifta[4] { 0, 1, 2, 3 };
static const int32x4_t shift = vld1q_s32(shifta);
tmp = vshlq_u32(tmp, shift)

// Horizontal add across the vector to merge the result into a scalar
return vaddvq_u32();

... at which point you can define any() (mask is non-zero) and all() (mask is 0xF) comparisons if you need branchy logic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文