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_f32();
|
|
void vec_add_f32();
|
|
void vec_sub_f32();
|
|
void vec_abs_f32();
|
|
void vec_negate_f32();
|
|
void vec_offset_f32();
|
|
void vec_scale_f32();
|
|
void vec_dot_f32();
|
|
|
|
// Pattern IDs
|
|
static const int INPUT1_F32_ID=0;
|
|
static const int INPUT2_F32_ID=1;
|
|
|
|
// Output IDs
|
|
static const int OUT_SAMPLES_F32_ID=0;
|
|
|
|
// Test IDs
|
|
static const int VEC_MULT_F32_1=1;
|
|
static const int VEC_ADD_F32_2=2;
|
|
static const int VEC_SUB_F32_3=3;
|
|
static const int VEC_ABS_F32_4=4;
|
|
static const int VEC_NEGATE_F32_5=5;
|
|
static const int VEC_OFFSET_F32_6=6;
|
|
static const int VEC_SCALE_F32_7=7;
|
|
static const int VEC_DOT_F32_8=8;
|