You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
601 B
C
26 lines
601 B
C
void vec_mult_q15();
|
|
void vec_add_q15();
|
|
void vec_sub_q15();
|
|
void vec_abs_q15();
|
|
void vec_negate_q15();
|
|
void vec_offset_q15();
|
|
void vec_scale_q15();
|
|
void vec_dot_q15();
|
|
|
|
// Pattern IDs
|
|
static const int INPUT1_Q15_ID=0;
|
|
static const int INPUT2_Q15_ID=1;
|
|
|
|
// Output IDs
|
|
static const int OUT_SAMPLES_Q15_ID=0;
|
|
|
|
// Test IDs
|
|
static const int VEC_MULT_Q15_1=1;
|
|
static const int VEC_ADD_Q15_2=2;
|
|
static const int VEC_SUB_Q15_3=3;
|
|
static const int VEC_ABS_Q15_4=4;
|
|
static const int VEC_NEGATE_Q15_5=5;
|
|
static const int VEC_OFFSET_Q15_6=6;
|
|
static const int VEC_SCALE_Q15_7=7;
|
|
static const int VEC_DOT_Q15_8=8;
|