BasicMathsBenchmarksQ7_decl.h 582 B

12345678910111213141516171819202122232425
  1. void vec_mult_q7();
  2. void vec_add_q7();
  3. void vec_sub_q7();
  4. void vec_abs_q7();
  5. void vec_negate_q7();
  6. void vec_offset_q7();
  7. void vec_scale_q7();
  8. void vec_dot_q7();
  9. // Pattern IDs
  10. static const int INPUT1_Q7_ID=0;
  11. static const int INPUT2_Q7_ID=1;
  12. // Output IDs
  13. static const int OUT_SAMPLES_Q7_ID=0;
  14. // Test IDs
  15. static const int VEC_MULT_Q7_1=1;
  16. static const int VEC_ADD_Q7_2=2;
  17. static const int VEC_SUB_Q7_3=3;
  18. static const int VEC_ABS_Q7_4=4;
  19. static const int VEC_NEGATE_Q7_5=5;
  20. static const int VEC_OFFSET_Q7_6=6;
  21. static const int VEC_SCALE_Q7_7=7;
  22. static const int VEC_DOT_Q7_8=8;