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.
我找到了一个库,但没有
void atan2fv_neon_hfp(float *y, float *x,float *res,int len)
计算 len 浮动一次。
我怎样才能写一个霓虹灯版本atan2fv_neon_hfp?
atan2fv_neon_hfp
浏览一下 atan2f_neon_hfp 的实现,似乎没有任何东西无法简单地矢量化(通过将对加载到 d16 和 d17 中,而不是 vdup 到它们中),但是您需要了解 ARM/霓虹灯组装。或者,您可以在循环中调用标量版本。