OpenCores
URL https://opencores.org/ocsvn/dblclockfft/dblclockfft/trunk

Subversion Repositories dblclockfft

[/] [dblclockfft/] [trunk/] [bench/] [cpp/] [butterfly_tb.cpp] - Blame information for rev 8

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 6 dgisselq
////////////////////////////////////////////////////////////////////////////
2
//
3
// Filename:    butterfly_tb.cpp
4
//
5
// Project:     A Doubletime Pipelined FFT
6
//
7
// Purpose:     A test-bench for the butterfly.v subfile of the double
8
//              clocked FFT.  This file may be run autonomously.  If so,
9
//              the last line output will either read "SUCCESS" on success,
10
//              or some other failure message otherwise.
11
//
12
//              This file depends upon verilator to both compile, run, and
13
//              therefore test butterfly.v
14
//
15
// Creator:     Dan Gisselquist, Ph.D.
16
//              Gisselquist Tecnology, LLC
17
//
18
///////////////////////////////////////////////////////////////////////////
19
//
20
// Copyright (C) 2015, Gisselquist Technology, LLC
21
//
22
// This program is free software (firmware): you can redistribute it and/or
23
// modify it under the terms of  the GNU General Public License as published
24
// by the Free Software Foundation, either version 3 of the License, or (at
25
// your option) any later version.
26
//
27
// This program is distributed in the hope that it will be useful, but WITHOUT
28
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
29
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
30
// for more details.
31
//
32
// You should have received a copy of the GNU General Public License along
33
// with this program.  (It's in the $(ROOT)/doc directory, run make with no
34
// target there if the PDF file isn't present.)  If not, see
35
// <http://www.gnu.org/licenses/> for a copy.
36
//
37
// License:     GPL, v3, as defined and found on www.gnu.org,
38
//              http://www.gnu.org/licenses/gpl.html
39
//
40
//
41
///////////////////////////////////////////////////////////////////////////
42 3 dgisselq
#include <stdio.h>
43
#include <stdint.h>
44
 
45
#include "Vbutterfly.h"
46
#include "verilated.h"
47
 
48 5 dgisselq
class   BFLY_TB {
49
public:
50
        Vbutterfly      *m_bfly;
51
        unsigned long   m_left[64], m_right[64];
52 6 dgisselq
        bool            m_aux[64];
53 5 dgisselq
        int             m_addr, m_lastaux;
54 6 dgisselq
        bool            m_syncd;
55 3 dgisselq
 
56 5 dgisselq
        BFLY_TB(void) {
57
                m_bfly = new Vbutterfly;
58
                m_addr = 0;
59 6 dgisselq
                m_syncd = 0;
60 5 dgisselq
        }
61 3 dgisselq
 
62 5 dgisselq
        void    tick(void) {
63
                m_lastaux = m_bfly->o_aux;
64
                m_bfly->i_clk = 0;
65
                m_bfly->eval();
66
                m_bfly->i_clk = 1;
67
                m_bfly->eval();
68 6 dgisselq
 
69
                m_syncd = (m_syncd) || (m_bfly->o_aux);
70 5 dgisselq
        }
71
 
72
        void    reset(void) {
73
                m_bfly->i_ce    = 0;
74 6 dgisselq
                m_bfly->i_rst   = 1;
75 5 dgisselq
                m_bfly->i_coef  = 0l;
76
                m_bfly->i_left  = 0;
77
                m_bfly->i_right = 0;
78
                tick();
79 6 dgisselq
                m_bfly->i_rst = 0;
80 5 dgisselq
                m_bfly->i_ce  = 1;
81 6 dgisselq
                //
82
                // Let's run a RESET test here, forcing the whole butterfly
83
                // to be filled with aux=1.  If the reset works right,
84
                // we'll never get an aux=1 output.
85
                //
86
                m_bfly->i_rst = 1;
87
                m_bfly->i_ce  = 1;
88 5 dgisselq
                m_bfly->i_aux = 1;
89 6 dgisselq
                for(int i=0; i<200; i++)
90
                        tick();
91 5 dgisselq
 
92 6 dgisselq
                // Now here's the RESET line, so let's see what the test does
93
                m_bfly->i_rst = 1;
94
                m_bfly->i_ce  = 1;
95
                m_bfly->i_aux = 1;
96 5 dgisselq
                tick();
97 6 dgisselq
                m_bfly->i_rst = 0;
98
                m_syncd = 0;
99 5 dgisselq
        }
100
 
101
        void    test(const int n, const int k, const unsigned long cof,
102
                        const unsigned lft, const unsigned rht, const int aux) {
103
 
104
                m_bfly->i_coef  = cof & (~(-1l << 40));
105
                m_bfly->i_left  = lft;
106
                m_bfly->i_right = rht;
107
                m_bfly->i_aux   = aux & 1;
108
 
109
                tick();
110
 
111
                if ((m_bfly->o_aux)&&(!m_lastaux))
112
                        printf("\n");
113
                printf("n,k=%d,%3d: COEF=%010lx, LFT=%08x, RHT=%08x, A=%d, OLFT =%09lx, ORHT=%09lx, AUX=%d\n",
114
                        n,k,
115
                        m_bfly->i_coef & (~(-1l<<40)),
116
                        m_bfly->i_left,
117
                        m_bfly->i_right,
118
                        m_bfly->i_aux,
119
                        m_bfly->o_left,
120
                        m_bfly->o_right,
121
                        m_bfly->o_aux);
122
                /*
123
                printf("\tFI=%010lx",
124
                        ((((long)m_bfly->v__DOT__r_aux_2)&1l)<<34)
125
                        |((((long)m_bfly->v__DOT__r_sum_r)&0x01ffffl)<<17)
126
                        |(((long)m_bfly->v__DOT__r_sum_i)&0x01ffffl));
127
                printf("\tFO=%010lx SUMR=%05x SUMI=%05x A=%d",
128
                        m_bfly->v__DOT__fifo_read,
129
                        m_bfly->v__DOT__r_sum_r,
130
                        m_bfly->v__DOT__r_sum_i,
131
                        m_bfly->v__DOT__r_aux_2);
132
                printf("\tML=%09lx, MR=%09lx, ",
133
                        m_left[ (m_addr-23)&(64-1)],
134
                        m_right[(m_addr-23)&(64-1)]);
135
                */
136
                /*
137
                printf("\tBLFTR=%10lx BLFTI=%10lx",
138
                        m_bfly->v__DOT__b_left_r & (~(-1l<<40)),
139
                        m_bfly->v__DOT__b_left_i & (~(-1l<<40)));
140
                printf("\tMPYR=%10lx MPYI=%10lx",
141
                        m_bfly->v__DOT__mpy_r & (~(-1l<<40)),
142
                        m_bfly->v__DOT__mpy_i & (~(-1l<<40)));
143
                printf("\n");
144
                */
145
 
146 6 dgisselq
                if ((m_syncd)&&(m_left[(m_addr-23)&(64-1)] != m_bfly->o_left)) {
147 5 dgisselq
                        fprintf(stderr, "WRONG O_LEFT!\n");
148
                        exit(-1);
149
                }
150
 
151 6 dgisselq
                if ((m_syncd)&&(m_right[(m_addr-23)&(64-1)] != m_bfly->o_right)) {
152 5 dgisselq
                        fprintf(stderr, "WRONG O_RIGHT!\n");
153
                        exit(-1);
154
                }
155
 
156 6 dgisselq
                if ((m_syncd)&&(m_aux[(m_addr-23)&(64-1)] != m_bfly->o_aux)) {
157
                        fprintf(stderr, "FAILED AUX CHANNEL TEST (i.e. the SYNC)\n");
158
                        exit(-1);
159
                }
160
 
161
                if ((m_addr > 22)&&(!m_syncd)) {
162
                        fprintf(stderr, "NO SYNC PULSE!\n");
163
                        exit(-1);
164
                }
165
 
166 5 dgisselq
                // Now, let's calculate an "expected" result ...
167
                long    rlft, ilft;
168
 
169
                // Extract left and right values ...
170
                rlft = (m_bfly->i_left >> 16) & 0x0ffff;
171
                ilft = (m_bfly->i_left      ) & 0x0ffff;
172
                // Make certain they are properly sign extended ...
173
                if (rlft & 0x8000) rlft |= (-1<<16);
174
                if (ilft & 0x8000) ilft |= (-1<<16);
175
 
176
                // Now repeat for the right hand value ...
177
                long    rrht, irht;
178
                // Extract left and right values ...
179
                rrht = (m_bfly->i_right >> 16) & 0x0ffff;
180
                irht = (m_bfly->i_right      ) & 0x0ffff;
181
                // Make certain they are properly sign extended ...
182
                if (rrht & 0x8000) rrht |= (-1<<16);
183
                if (irht & 0x8000) irht |= (-1<<16);
184
 
185
 
186
                // and again for the coefficients
187
                long    rcof, icof;
188
                // Extract left and right values ...
189
                rcof = (m_bfly->i_coef >> 20) & 0x0fffff;
190
                icof = (m_bfly->i_coef      ) & 0x0fffff;
191
                // Make certain they are properly sign extended ...
192
                if (rcof & 0x80000) rcof |= (-1<<20);
193
                if (icof & 0x80000) icof |= (-1<<20);
194
 
195
 
196
                // Now, let's do the butterfly ourselves ...
197
                long sumi, sumr, difi, difr;
198
                sumr = rlft + rrht;
199
                sumi = ilft + irht;
200
                difr = rlft - rrht;
201
                difi = ilft - irht;
202
 
203
        /*
204
                printf("L=%5lx+%5lx,R=%5lx+%5lx,S=%5lx+%5lx,D=%5lx+%5lx, ",
205
                        rlft & 0x02ffffl,
206
                        ilft & 0x02ffffl,
207
                        rrht & 0x02ffffl,
208
                        irht & 0x02ffffl,
209
                        sumr & 0x02ffffl,
210
                        sumi & 0x02ffffl,
211
                        difr & 0x02ffffl,
212
                        difi & 0x02ffffl);
213
        */
214
                long p1, p2, p3, mpyr, mpyi;
215
                p1 = difr * rcof;
216
                p2 = difi * icof;
217
                p3 = (difr + difi) * (rcof + icof);
218
 
219
                mpyr = p1-p2;
220
                mpyi = p3-p1-p2;
221
 
222
        /*
223
                printf("RC=%lx, IC=%lx, ", rcof, icof);
224
                printf("P1=%lx,P2=%lx,P3=%lx, ", p1,p2,p3);
225
                printf("MPYr = %lx, ", mpyr);
226
                printf("MPYi = %lx, ", mpyi);
227
        */
228
 
229
                long    o_left_r, o_left_i, o_right_r, o_right_i;
230
                unsigned long   o_left, o_right;
231
 
232
                o_left_r = sumr & 0x01ffff; o_left_i = sumi & 0x01ffff;
233
                o_left = (o_left_r << 17) | (o_left_i);
234
 
235
                o_right_r = (mpyr>>18) & 0x01ffff;
236
                o_right_i = (mpyi>>18) & 0x01ffff;
237
                o_right = (o_right_r << 17) | (o_right_i);
238
        /*
239
                printf("oR_r = %lx, ", o_right_r);
240
                printf("oR_i = %lx\n", o_right_i);
241
        */
242
 
243
                m_left[ m_addr&(64-1)] = o_left;
244
                m_right[m_addr&(64-1)] = o_right;
245 6 dgisselq
                m_aux[  m_addr&(64-1)] = aux;
246 5 dgisselq
 
247
                m_addr++;
248
        }
249
};
250
 
251 3 dgisselq
int     main(int argc, char **argv, char **envp) {
252
        Verilated::commandArgs(argc, argv);
253 5 dgisselq
        BFLY_TB *bfly = new BFLY_TB;
254 3 dgisselq
        int16_t         ir0, ii0, lstr, lsti;
255
        int32_t         sumr, sumi, difr, difi;
256
        int32_t         smr, smi, dfr, dfi;
257
        int             rnd = 0;
258
 
259 5 dgisselq
        const int       TESTSZ = 256;
260 3 dgisselq
 
261 5 dgisselq
        bfly->reset();
262 3 dgisselq
 
263 5 dgisselq
        bfly->test(9,0,0x4000000000l,0x7fff0000,0x7fff0000, 1);
264
        bfly->test(9,1,0x4000000000l,0x7fff0000,0x80010000, 0);
265
        bfly->test(9,2,0x4000000000l,0x00007fff,0x00008001, 0);
266
        bfly->test(9,3,0x4000000000l,0x00007fff,0x00007fff, 0);
267 3 dgisselq
 
268 5 dgisselq
        bfly->test(8,0,0x4000000000l,0x80010000,0x80010000, 1);
269
        bfly->test(8,1,0x4000000000l,0x00008001,0x00008001, 0);
270 3 dgisselq
 
271 5 dgisselq
        bfly->test(9,0,0x4000000000l,0x40000000,0xc0000000, 1);
272
        bfly->test(9,1,0x4000000000l,0x40000000,0x40000000, 0);
273
        bfly->test(9,2,0x4000000000l,0x00004000,0x0000c000, 0);
274
        bfly->test(9,3,0x4000000000l,0x00004000,0x00004000, 0);
275 3 dgisselq
 
276 5 dgisselq
        bfly->test(9,0,0x4000000000l,0x20000000,0xe0000000, 1);
277
        bfly->test(9,1,0x4000000000l,0x20000000,0x20000000, 0);
278
        bfly->test(9,2,0x4000000000l,0x00002000,0x0000e000, 0);
279
        bfly->test(9,3,0x4000000000l,0x00002000,0x00002000, 0);
280 3 dgisselq
 
281 5 dgisselq
        bfly->test(9,0,0x4000000000l,0x00080000,0xfff80000, 1);
282
        bfly->test(9,1,0x4000000000l,0x00080000,0x00080000, 0);
283
        bfly->test(9,2,0x4000000000l,0x00000008,0x0000fff8, 0);
284
        bfly->test(9,3,0x4000000000l,0x00000008,0x00000008, 0);
285 3 dgisselq
 
286 8 dgisselq
        bfly->test(7,0,0x3fffbff9b9l,0xfffe0000,0x00000000, 1);
287
        bfly->test(7,1,0x3ffd4fed28l,0xfffc0000,0x00020000, 0);
288
        bfly->test(7,2,0x3ff85fe098l,0xfff80000,0x00060000, 0);
289
        bfly->test(7,3,0x3ff0efd409l,0xfff00000,0x000e0000, 0);
290
        bfly->test(7,4,0x3fe70fc77cl,0xffe60000,0x00180000, 0);
291
        bfly->test(7,5,0x3fdabfbaf1l,0xffda0000,0x00240000, 0);
292
        bfly->test(7,6,0x3fcbefae69l,0xffca0000,0x00340000, 0);
293
        bfly->test(7,7,0x3fbaafa1e4l,0xffba0000,0x00440000, 0);
294
 
295
        /*
296
        // Special tests
297 5 dgisselq
        bfly->test(9,0,0x4000000000l,0x00010000,0xffff0000, 1);
298
        bfly->test(9,1,0x4000000000l,0x00010000,0x00010000, 0);
299
        bfly->test(9,2,0x4000000000l,0x00000001,0x0000ffff, 0);
300
        bfly->test(9,3,0x4000000000l,0x00000001,0x00000001, 0);
301 8 dgisselq
        */
302 3 dgisselq
 
303 5 dgisselq
        for(int n=0; n<4; n++) for(int k=0; k<TESTSZ; k++) {
304
                long    iv, rv;
305
                unsigned long   lft, rht, cof;
306
                double  c, s, W;
307
                bool    inv = 1;
308
                int     aux;
309 3 dgisselq
 
310 5 dgisselq
                W = ((inv)?-1:1) * 2.0 * M_PI * (2*k) / TESTSZ * 64;
311
                c = cos(W); s = sin(W);
312
                rv = (long)((double)(1l<<(16-2-n))*c+0.5);
313
                iv = (long)((double)(1l<<(16-2-n))*s+0.5);
314 3 dgisselq
 
315 5 dgisselq
                rv = (rv << 16) | (iv & (~(-1<<16)));
316
                lft = rv;
317 3 dgisselq
 
318 5 dgisselq
                W = ((inv)?-1:1) * 2.0 * M_PI * (2*k+1) / TESTSZ * 64;
319
                c = cos(W); s = sin(W);
320
                rv = (long)((double)(1l<<(16-2-n))*c+0.5);
321
                iv = (long)((double)(1l<<(16-2-n))*s+0.5);
322
 
323
                rv = (rv << 16) | (iv & (~(-1<<16)));
324
                rht = rv;
325
 
326
 
327
                // Switch the sign of W
328
                W = ((inv)?1:-1) * 2.0 * M_PI * (2*k) / TESTSZ;
329
                c = cos(W); s = sin(W);
330
                rv = (long)((double)(1l<<(20-2))*c+0.5); // Keep 20-2 bits for
331
                iv = (long)((double)(1l<<(20-2))*s+0.5); // coefficients
332
 
333
                rv = (rv << 20) | (iv & (~(-1<<20)));
334
                cof = rv;
335
 
336
                aux = ((k&(TESTSZ-1))==0);
337
 
338
                bfly->test(n,k, cof, lft, rht, aux);
339 3 dgisselq
        }
340
 
341
        delete  bfly;
342
 
343 4 dgisselq
        printf("SUCCESS!\n");
344 3 dgisselq
        exit(0);
345
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.