Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | mjames | 1 | #ifndef _INTRINSICS_TEST_DATA_H_ |
2 | #define _INTRINSICS_TEST_DATA_H_ |
||
3 | |||
4 | /*--------------------------------------------------------------------------------*/ |
||
5 | /* Includes */ |
||
6 | /*--------------------------------------------------------------------------------*/ |
||
7 | |||
8 | #include "arm_math.h" |
||
9 | |||
10 | /*--------------------------------------------------------------------------------*/ |
||
11 | /* Macros and Defines */ |
||
12 | /*--------------------------------------------------------------------------------*/ |
||
13 | |||
14 | #define INTRINSICS_MAX_LEN 1024 |
||
15 | |||
16 | /*--------------------------------------------------------------------------------*/ |
||
17 | /* Variable Declarations */ |
||
18 | /*--------------------------------------------------------------------------------*/ |
||
19 | |||
20 | extern q63_t intrinsics_output_fut[INTRINSICS_MAX_LEN]; |
||
21 | extern q63_t intrinsics_output_ref[INTRINSICS_MAX_LEN]; |
||
22 | extern float32_t intrinsics_output_f32_fut[INTRINSICS_MAX_LEN]; |
||
23 | extern float32_t intrinsics_output_f32_ref[INTRINSICS_MAX_LEN]; |
||
24 | extern const q63_t intrinsics_q63_inputs[INTRINSICS_MAX_LEN]; |
||
25 | extern const q31_t *intrinsics_q31_inputs; |
||
26 | |||
27 | #endif /* _INTRINSICS_TEST_DATA_H_ */ |