| 12345678910111213141516171819202122232425 |
- void vec_mult_q7();
- void vec_add_q7();
- void vec_sub_q7();
- void vec_abs_q7();
- void vec_negate_q7();
- void vec_offset_q7();
- void vec_scale_q7();
- void vec_dot_q7();
- // Pattern IDs
- static const int INPUT1_Q7_ID=0;
- static const int INPUT2_Q7_ID=1;
- // Output IDs
- static const int OUT_SAMPLES_Q7_ID=0;
- // Test IDs
- static const int VEC_MULT_Q7_1=1;
- static const int VEC_ADD_Q7_2=2;
- static const int VEC_SUB_Q7_3=3;
- static const int VEC_ABS_Q7_4=4;
- static const int VEC_NEGATE_Q7_5=5;
- static const int VEC_OFFSET_Q7_6=6;
- static const int VEC_SCALE_Q7_7=7;
- static const int VEC_DOT_Q7_8=8;
|