BasicMathsBenchmarksQ31_decl.h 601 B

12345678910111213141516171819202122232425
  1. void vec_mult_q31();
  2. void vec_add_q31();
  3. void vec_sub_q31();
  4. void vec_abs_q31();
  5. void vec_negate_q31();
  6. void vec_offset_q31();
  7. void vec_scale_q31();
  8. void vec_dot_q31();
  9. // Pattern IDs
  10. static const int INPUT1_Q31_ID=0;
  11. static const int INPUT2_Q31_ID=1;
  12. // Output IDs
  13. static const int OUT_SAMPLES_Q31_ID=0;
  14. // Test IDs
  15. static const int VEC_MULT_Q31_1=1;
  16. static const int VEC_ADD_Q31_2=2;
  17. static const int VEC_SUB_Q31_3=3;
  18. static const int VEC_ABS_Q31_4=4;
  19. static const int VEC_NEGATE_Q31_5=5;
  20. static const int VEC_OFFSET_Q31_6=6;
  21. static const int VEC_SCALE_Q31_7=7;
  22. static const int VEC_DOT_Q31_8=8;