BasicMathsBenchmarksF32_decl.h 601 B

12345678910111213141516171819202122232425
  1. void vec_mult_f32();
  2. void vec_add_f32();
  3. void vec_sub_f32();
  4. void vec_abs_f32();
  5. void vec_negate_f32();
  6. void vec_offset_f32();
  7. void vec_scale_f32();
  8. void vec_dot_f32();
  9. // Pattern IDs
  10. static const int INPUT1_F32_ID=0;
  11. static const int INPUT2_F32_ID=1;
  12. // Output IDs
  13. static const int OUT_SAMPLES_F32_ID=0;
  14. // Test IDs
  15. static const int VEC_MULT_F32_1=1;
  16. static const int VEC_ADD_F32_2=2;
  17. static const int VEC_SUB_F32_3=3;
  18. static const int VEC_ABS_F32_4=4;
  19. static const int VEC_NEGATE_F32_5=5;
  20. static const int VEC_OFFSET_F32_6=6;
  21. static const int VEC_SCALE_F32_7=7;
  22. static const int VEC_DOT_F32_8=8;