android
2024-06-25 aa38e5c1f48e31213ee349aa5cd6f06c85bda70d
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _CONTROLLER_TEMPLATES_H_
#define _CONTROLLER_TEMPLATES_H_
 
/*--------------------------------------------------------------------------------*/
/* Includes */
/*--------------------------------------------------------------------------------*/
 
#include "test_templates.h"
#include <string.h>             /* memcpy() */
 
/*--------------------------------------------------------------------------------*/
/* Group Specific Templates */
/*--------------------------------------------------------------------------------*/
 
/**
 * Comparison SNR thresholds for the data types used in transform_tests.
 */
#define CONTROLLER_SNR_THRESHOLD_float32_t 110
#define CONTROLLER_SNR_THRESHOLD_q31_t     100
#define CONTROLLER_SNR_THRESHOLD_q15_t     45
 
/**
 *  Compare the outputs from the function under test and the reference
 *  function using SNR.
 */
#define CONTROLLER_SNR_COMPARE_INTERFACE(block_size,    \
                                         output_type)   \
    do                                                  \
    {                                                   \
        TEST_CONVERT_AND_ASSERT_SNR(                    \
            controller_output_f32_ref,                  \
            (output_type *) controller_output_ref,      \
            controller_output_f32_fut,                  \
            (output_type *) controller_output_fut,      \
            block_size,                                 \
            output_type,                                \
            CONTROLLER_SNR_THRESHOLD_##output_type      \
            );                                          \
    } while (0)
 
 
/*--------------------------------------------------------------------------------*/
/* TEST Templates */
/*--------------------------------------------------------------------------------*/
 
#endif /* _CONTROLLER_TEMPLATES_H_ */