| 1 |
36 |
dgisselq |
////////////////////////////////////////////////////////////////////////////////
|
| 2 |
|
|
//
|
| 3 |
|
|
// Filename: butterfly.h
|
| 4 |
|
|
//
|
| 5 |
|
|
// Project: A General Purpose Pipelined FFT Implementation
|
| 6 |
|
|
//
|
| 7 |
|
|
// Purpose:
|
| 8 |
|
|
//
|
| 9 |
|
|
// Creator: Dan Gisselquist, Ph.D.
|
| 10 |
|
|
// Gisselquist Technology, LLC
|
| 11 |
|
|
//
|
| 12 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
| 13 |
|
|
//
|
| 14 |
|
|
// Copyright (C) 2015-2018, Gisselquist Technology, LLC
|
| 15 |
|
|
//
|
| 16 |
|
|
// This program is free software (firmware): you can redistribute it and/or
|
| 17 |
|
|
// modify it under the terms of the GNU General Public License as published
|
| 18 |
|
|
// by the Free Software Foundation, either version 3 of the License, or (at
|
| 19 |
|
|
// your option) any later version.
|
| 20 |
|
|
//
|
| 21 |
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
| 22 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
| 23 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
| 24 |
|
|
// for more details.
|
| 25 |
|
|
//
|
| 26 |
|
|
// You should have received a copy of the GNU General Public License along
|
| 27 |
|
|
// with this program. (It's in the $(ROOT)/doc directory, run make with no
|
| 28 |
|
|
// target there if the PDF file isn't present.) If not, see
|
| 29 |
|
|
// <http://www.gnu.org/licenses/> for a copy.
|
| 30 |
|
|
//
|
| 31 |
|
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
| 32 |
|
|
// http://www.gnu.org/licenses/gpl.html
|
| 33 |
|
|
//
|
| 34 |
|
|
//
|
| 35 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
| 36 |
|
|
//
|
| 37 |
|
|
//
|
| 38 |
|
|
#ifndef BUTTERFLY_H
|
| 39 |
|
|
#define BUTTERFLY_H
|
| 40 |
|
|
|
| 41 |
|
|
extern void build_butterfly(const char *fname, int xtracbits,
|
| 42 |
|
|
ROUND_T rounding, int ckpce = 1,
|
| 43 |
|
|
const bool async_reset = false);
|
| 44 |
|
|
|
| 45 |
|
|
extern void build_hwbfly(const char *fname, int xtracbits, ROUND_T rounding,
|
| 46 |
|
|
int ckpce = 3, const bool async_reset= false);
|
| 47 |
|
|
|
| 48 |
|
|
#endif
|