BasicMathsBenchmarksQ15_decl.h 601 B

12345678910111213141516171819202122232425
  1. void vec_mult_q15();
  2. void vec_add_q15();
  3. void vec_sub_q15();
  4. void vec_abs_q15();
  5. void vec_negate_q15();
  6. void vec_offset_q15();
  7. void vec_scale_q15();
  8. void vec_dot_q15();
  9. // Pattern IDs
  10. static const int INPUT1_Q15_ID=0;
  11. static const int INPUT2_Q15_ID=1;
  12. // Output IDs
  13. static const int OUT_SAMPLES_Q15_ID=0;
  14. // Test IDs
  15. static const int VEC_MULT_Q15_1=1;
  16. static const int VEC_ADD_Q15_2=2;
  17. static const int VEC_SUB_Q15_3=3;
  18. static const int VEC_ABS_Q15_4=4;
  19. static const int VEC_NEGATE_Q15_5=5;
  20. static const int VEC_OFFSET_Q15_6=6;
  21. static const int VEC_SCALE_Q15_7=7;
  22. static const int VEC_DOT_Q15_8=8;