guowenxue
2024-06-25 8b691b645fb73d244b46dfa6f094ec299b202f67
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "jtest.h"
#include "complex_math_test_data.h"
#include "arr_desc.h"
#include "arm_math.h"           /* FUTs */
#include "ref.h"                /* Reference Functions */
#include "test_templates.h"
#include "complex_math_templates.h"
#include "type_abbrev.h"
 
#define JTEST_ARM_CMPLX_MULT_CMPLX_TEST(suffix) \
    COMPLEX_MATH_DEFINE_TEST_TEMPLATE_BUF2_BLK( \
        cmplx_mult_cmplx,                       \
        suffix,                                 \
        TYPE_FROM_ABBREV(suffix),               \
        TYPE_FROM_ABBREV(suffix),               \
        COMPLEX_MATH_COMPARE_CMPLX_INTERFACE)
 
JTEST_ARM_CMPLX_MULT_CMPLX_TEST(f32);
JTEST_ARM_CMPLX_MULT_CMPLX_TEST(q31);
JTEST_ARM_CMPLX_MULT_CMPLX_TEST(q15);
 
/*--------------------------------------------------------------------------------*/
/* Collect all tests in a group. */
/*--------------------------------------------------------------------------------*/
 
JTEST_DEFINE_GROUP(cmplx_mult_cmplx_tests)
{
    JTEST_TEST_CALL(arm_cmplx_mult_cmplx_f32_test);
    JTEST_TEST_CALL(arm_cmplx_mult_cmplx_q31_test);
    JTEST_TEST_CALL(arm_cmplx_mult_cmplx_q15_test);
}