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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#ifndef _MAIN_H_
#define _MAIN_H_
 
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
 
#include "arm_math.h"
 
#include "arm_nnfunctions.h"
#include "ref_functions.h"
 
extern int test_index;
extern q7_t test_flags[50];
 
void initialize_results_q7(q7_t * ref, q7_t * opt, int length)
{
    arm_fill_q7(0, ref, length);
    arm_fill_q7(37, opt, length);
}
 
void initialize_results_q15(q15_t * ref, q15_t * opt, int length)
{
    arm_fill_q15(0, ref, length);
    arm_fill_q15(0x5F5, opt, length);
}
 
void verify_results_q7(q7_t * ref, q7_t * opt, int length)
{
 
    bool      if_match = true;
 
    for (int i = 0; i < length; i++)
    {
        if (ref[i] != opt[i])
        {
            printf("Output mismatch at %d, expected %d, actual %d\r\n", i, ref[i], opt[i]);
 
            if_match = false;
        }
    }
 
    if (if_match == true)
    {
        printf("Outputs match.\r\n\r\n");
        test_flags[test_index++] = 0;
    } else {
        test_flags[test_index++] = 1;
    }
 
}
 
void verify_results_q15(q15_t * ref, q15_t * opt, int length)
{
 
    bool      if_match = true;
 
    for (int i = 0; i < length; i++)
    {
        if (ref[i] != opt[i])
        {
            printf("Output mismatch at %d, expected %d, actual %d\r\n", i, ref[i], opt[i]);
 
            if_match = false;
        }
    }
 
    if (if_match == true)
    {
        printf("Outputs match.\r\n\r\n");
        test_flags[test_index++] = 0;
    } else {
        test_flags[test_index++] = 1;
    }
 
}
 
#endif