m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
329 B

6 months ago
  1. #ifdef _MSC_VER
  2. #include <Intrin.h>
  3. #endif
  4. #include <arm_neon.h>
  5. int main(void)
  6. {
  7. float16x8_t vhp = vdupq_n_f16((float16_t)-1);
  8. float16x4_t vlhp = vdup_n_f16((float16_t)-1);
  9. int ret = (int)vgetq_lane_f16(vabdq_f16(vhp, vhp), 0);
  10. ret += (int)vget_lane_f16(vabd_f16(vlhp, vlhp), 0);
  11. return ret;
  12. }