1 /*
2  *  Test program for MSA instruction AVE_S.B
3  *
4  *  Copyright (C) 2018  Wave Computing, Inc.
5  *  Copyright (C) 2018  Mateja Marjanovic <mateja.marjanovic@rt-rk.com>
6  *
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #include <sys/time.h>
23 #include <stdint.h>
24 
25 #include "../../../../include/wrappers_msa.h"
26 #include "../../../../include/test_inputs.h"
27 #include "../../../../include/test_utils.h"
28 
29 #define TEST_COUNT_TOTAL (                                                \
30             (PATTERN_INPUTS_SHORT_COUNT) * (PATTERN_INPUTS_SHORT_COUNT) + \
31             (RANDOM_INPUTS_SHORT_COUNT) * (RANDOM_INPUTS_SHORT_COUNT))
32 
33 
34 int32_t main(void)
35 {
36     char *instruction_name = "AVE_S.B";
37     int32_t ret;
38     uint32_t i, j;
39     struct timeval start, end;
40     double elapsed_time;
41 
42     uint64_t b128_result[TEST_COUNT_TOTAL][2];
43     uint64_t b128_expect[TEST_COUNT_TOTAL][2] = {
44         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },    /*   0  */
45         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
46         { 0xd4d4d4d4d4d4d4d4ULL, 0xd4d4d4d4d4d4d4d4ULL, },
47         { 0x2a2a2a2a2a2a2a2aULL, 0x2a2a2a2a2a2a2a2aULL, },
48         { 0xe5e5e5e5e5e5e5e5ULL, 0xe5e5e5e5e5e5e5e5ULL, },
49         { 0x1919191919191919ULL, 0x1919191919191919ULL, },
50         { 0xf1c61bf1c61bf1c6ULL, 0x1bf1c61bf1c61bf1ULL, },
51         { 0x0d38e30d38e30d38ULL, 0xe30d38e30d38e30dULL, },
52         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },    /*   8  */
53         { 0x0000000000000000ULL, 0x0000000000000000ULL, },
54         { 0xd5d5d5d5d5d5d5d5ULL, 0xd5d5d5d5d5d5d5d5ULL, },
55         { 0x2a2a2a2a2a2a2a2aULL, 0x2a2a2a2a2a2a2a2aULL, },
56         { 0xe6e6e6e6e6e6e6e6ULL, 0xe6e6e6e6e6e6e6e6ULL, },
57         { 0x1919191919191919ULL, 0x1919191919191919ULL, },
58         { 0xf1c71cf1c71cf1c7ULL, 0x1cf1c71cf1c71cf1ULL, },
59         { 0x0e38e30e38e30e38ULL, 0xe30e38e30e38e30eULL, },
60         { 0xd4d4d4d4d4d4d4d4ULL, 0xd4d4d4d4d4d4d4d4ULL, },    /*  16  */
61         { 0xd5d5d5d5d5d5d5d5ULL, 0xd5d5d5d5d5d5d5d5ULL, },
62         { 0xaaaaaaaaaaaaaaaaULL, 0xaaaaaaaaaaaaaaaaULL, },
63         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
64         { 0xbbbbbbbbbbbbbbbbULL, 0xbbbbbbbbbbbbbbbbULL, },
65         { 0xeeeeeeeeeeeeeeeeULL, 0xeeeeeeeeeeeeeeeeULL, },
66         { 0xc69cf1c69cf1c69cULL, 0xf1c69cf1c69cf1c6ULL, },
67         { 0xe30db8e30db8e30dULL, 0xb8e30db8e30db8e3ULL, },
68         { 0x2a2a2a2a2a2a2a2aULL, 0x2a2a2a2a2a2a2a2aULL, },    /*  24  */
69         { 0x2a2a2a2a2a2a2a2aULL, 0x2a2a2a2a2a2a2a2aULL, },
70         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
71         { 0x5555555555555555ULL, 0x5555555555555555ULL, },
72         { 0x1010101010101010ULL, 0x1010101010101010ULL, },
73         { 0x4444444444444444ULL, 0x4444444444444444ULL, },
74         { 0x1cf1461cf1461cf1ULL, 0x461cf1461cf1461cULL, },
75         { 0x38630e38630e3863ULL, 0x0e38630e38630e38ULL, },
76         { 0xe5e5e5e5e5e5e5e5ULL, 0xe5e5e5e5e5e5e5e5ULL, },    /*  32  */
77         { 0xe6e6e6e6e6e6e6e6ULL, 0xe6e6e6e6e6e6e6e6ULL, },
78         { 0xbbbbbbbbbbbbbbbbULL, 0xbbbbbbbbbbbbbbbbULL, },
79         { 0x1010101010101010ULL, 0x1010101010101010ULL, },
80         { 0xccccccccccccccccULL, 0xccccccccccccccccULL, },
81         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
82         { 0xd7ad02d7ad02d7adULL, 0x02d7ad02d7ad02d7ULL, },
83         { 0xf41ec9f41ec9f41eULL, 0xc9f41ec9f41ec9f4ULL, },
84         { 0x1919191919191919ULL, 0x1919191919191919ULL, },    /*  40  */
85         { 0x1919191919191919ULL, 0x1919191919191919ULL, },
86         { 0xeeeeeeeeeeeeeeeeULL, 0xeeeeeeeeeeeeeeeeULL, },
87         { 0x4444444444444444ULL, 0x4444444444444444ULL, },
88         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
89         { 0x3333333333333333ULL, 0x3333333333333333ULL, },
90         { 0x0be0350be0350be0ULL, 0x350be0350be0350bULL, },
91         { 0x2752fd2752fd2752ULL, 0xfd2752fd2752fd27ULL, },
92         { 0xf1c61bf1c61bf1c6ULL, 0x1bf1c61bf1c61bf1ULL, },    /*  48  */
93         { 0xf1c71cf1c71cf1c7ULL, 0x1cf1c71cf1c71cf1ULL, },
94         { 0xc69cf1c69cf1c69cULL, 0xf1c69cf1c69cf1c6ULL, },
95         { 0x1cf1461cf1461cf1ULL, 0x461cf1461cf1461cULL, },
96         { 0xd7ad02d7ad02d7adULL, 0x02d7ad02d7ad02d7ULL, },
97         { 0x0be0350be0350be0ULL, 0x350be0350be0350bULL, },
98         { 0xe38e38e38e38e38eULL, 0x38e38e38e38e38e3ULL, },
99         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
100         { 0x0d38e30d38e30d38ULL, 0xe30d38e30d38e30dULL, },    /*  56  */
101         { 0x0e38e30e38e30e38ULL, 0xe30e38e30e38e30eULL, },
102         { 0xe30db8e30db8e30dULL, 0xb8e30db8e30db8e3ULL, },
103         { 0x38630e38630e3863ULL, 0x0e38630e38630e38ULL, },
104         { 0xf41ec9f41ec9f41eULL, 0xc9f41ec9f41ec9f4ULL, },
105         { 0x2752fd2752fd2752ULL, 0xfd2752fd2752fd27ULL, },
106         { 0xffffffffffffffffULL, 0xffffffffffffffffULL, },
107         { 0x1c71c71c71c71c71ULL, 0xc71c71c71c71c71cULL, },
108         { 0x886ae6cc28625540ULL, 0x4b670b5efe7bb00cULL, },    /*  64  */
109         { 0xc114f3173afa0e24ULL, 0x2e2fe33c095d0104ULL, },
110         { 0x9a62cabbf018f0e0ULL, 0x391fe82ed453ea10ULL, },
111         { 0xfc5cfe0c43491b47ULL, 0xec2cc91bd35ec9d6ULL, },
112         { 0xc114f3173afa0e24ULL, 0x2e2fe33c095d0104ULL, },
113         { 0xfbbe00634d93c708ULL, 0x12f7bb1a153f52fcULL, },
114         { 0xd30cd70603b1a9c4ULL, 0x1ce7c00ce0353b08ULL, },
115         { 0x35060b5855e2d42bULL, 0xcff4a1f9df401aceULL, },
116         { 0x9a62cabbf018f0e0ULL, 0x391fe82ed453ea10ULL, },    /*  72  */
117         { 0xd30cd70603b1a9c4ULL, 0x1ce7c00ce0353b08ULL, },
118         { 0xac5aaeaab9cf8b80ULL, 0x27d8c6ffab2b2514ULL, },
119         { 0x0e54e2fb0b00b6e7ULL, 0xdae4a7ebaa3603daULL, },
120         { 0xfc5cfe0c43491b47ULL, 0xec2cc91bd35ec9d6ULL, },
121         { 0x35060b5855e2d42bULL, 0xcff4a1f9df401aceULL, },
122 };
123 
124     gettimeofday(&start, NULL);
125 
126     for (i = 0; i < PATTERN_INPUTS_SHORT_COUNT; i++) {
127         for (j = 0; j < PATTERN_INPUTS_SHORT_COUNT; j++) {
128             do_msa_AVE_S_B(b128_pattern[i], b128_pattern[j],
129                            b128_result[PATTERN_INPUTS_SHORT_COUNT * i + j]);
130         }
131     }
132 
133     for (i = 0; i < RANDOM_INPUTS_SHORT_COUNT; i++) {
134         for (j = 0; j < RANDOM_INPUTS_SHORT_COUNT; j++) {
135             do_msa_AVE_S_B(b128_random[i], b128_random[j],
136                            b128_result[((PATTERN_INPUTS_SHORT_COUNT) *
137                                         (PATTERN_INPUTS_SHORT_COUNT)) +
138                                        RANDOM_INPUTS_SHORT_COUNT * i + j]);
139         }
140     }
141 
142     gettimeofday(&end, NULL);
143 
144     elapsed_time = (end.tv_sec - start.tv_sec) * 1000.0;
145     elapsed_time += (end.tv_usec - start.tv_usec) / 1000.0;
146 
147     ret = check_results(instruction_name, TEST_COUNT_TOTAL, elapsed_time,
148                         &b128_result[0][0], &b128_expect[0][0]);
149 
150     return ret;
151 }
152