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.

11 lines
251 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. short z4[] = {0, 0, 0, 0, 0, 0, 0, 0};
  8. float32x4_t v_z4 = vcvt_f32_f16((float16x4_t)vld1_s16((const short*)z4));
  9. return (int)vgetq_lane_f32(v_z4, 0);
  10. }