PGFFT.h
1 
2 /**************************************************************************
3 
4 
5 PGFFT: Pretty Good FFT (v1.8)
6 
7 Copyright (C) 2019, Victor Shoup
8 
9 See below for more details.
10 
11 **************************************************************************/
12 
13 #if __cplusplus < 201103L
14 #error "C++11 required to compile PGFFT"
15 #endif
16 
17 
18 
19 #ifndef PGFFT_H
20 #define PGFFT_H
21 
22 #include <vector>
23 #include <complex>
24 
25 #pragma GCC diagnostic push
26 #pragma GCC diagnostic ignored "-Wunused-parameter"
27 
28 namespace helib {
29 
30 class PGFFT {
31 public:
32 
33  // initialize data strctures for n-point FFT
34  // REQUIREMENT: n > 0
35  explicit PGFFT(long n);
36 
37  void apply(const std::complex<double>* src, std::complex<double>* dst) const;
38  // Apply n-point FFT to src[0..n-1], storing result in dst[0..n-1].
39  // That is,
40  // dst[i] = \sum_{j=0}^{n-1} src[j] W^{ij}
41  // and where W is the nth root of unity polar(1, -2*pi/n).
42  // src and dst may be equal, but should not otherwise overlap
43 
44  void apply(std::complex<double>* v) const { apply(v, v); }
45  // same as apply(v, v)
46 
47  // Copy/move constructors/assignment ops deleted, as future implementations
48  // may not support them.
49  PGFFT(const PGFFT&) = delete;
50  PGFFT(PGFFT&&) = delete;
51  PGFFT& operator=(const PGFFT&) = delete;
52  PGFFT& operator=(PGFFT&&) = delete;
53 
54  static bool
55  simd_enabled();
56 
57  // Define aligned vectors.
58  // This stuff should probably be private, but I'm not sure
59  // of the rules for accessing these in the implementation file.
60 
61  static void *
62  aligned_allocate(std::size_t n, std::size_t nelts);
63 
64  static void
65  aligned_deallocate(void *p);
66 
67  template <class T>
69  {
70  public:
71  using value_type = T;
72 
73  aligned_allocator() noexcept {}
74  template <class U> aligned_allocator(aligned_allocator<U> const&) noexcept {}
75 
76  value_type*
77  allocate(std::size_t n)
78  {
79  void *p = aligned_allocate(n, sizeof(T));
80  if (p) {
81  return static_cast<value_type*>(p);
82  }
83 
84  throw std::bad_alloc();
85  }
86 
87  void
88  deallocate(value_type* p, std::size_t) noexcept
89  {
91  }
92 
93  template <class U>
94  bool
96  {
97  return true;
98  }
99 
100  template <class U>
101  bool
102  operator!=(aligned_allocator<U> const& y) noexcept
103  {
104  return false;
105  }
106  };
107 
108  template<class T>
109  using aligned_vector= std::vector<T,aligned_allocator<T>>;
110 
111 
112 
113 private:
114 
115  long n;
116  long k;
117 
118  long strategy;
119 
120  // holds all of the twiddle factors
121  std::vector<aligned_vector<std::complex<double>>> tab;
122 
123  // additional data structures needed for Bluestein
126 
127  // additonal data structures needed for 2^k-point FFT
128  std::vector<long> rev, rev1;
129 
130 
131 
132 
133 
134 };
135 
136 }
137 
138 #endif
139 
140 /**************************************************************************
141 
142 PGFFT: Pretty Good FFT (v1.8)
143 
144 Copyright (C) 2019, Victor Shoup
145 
146 All rights reserved.
147 
148 Redistribution and use in source and binary forms, with or without
149 modification, are permitted provided that the following conditions are met:
150 
151 * Redistributions of source code must retain the above copyright notice, this
152  list of conditions and the following disclaimer.
153 * Redistributions in binary form must reproduce the above copyright notice,
154  this list of conditions and the following disclaimer in the documentation
155  and/or other materials provided with the distribution.
156 
157 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
158 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
159 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
160 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
161 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
162 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
163 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
164 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
165 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
166 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
167 
168 ****************************************************************************
169 
170 The logic of this code is derived from code originally developed by David Harvey,
171 even though the code itself has been essentially rewritten from scratch.
172 Here is David Harvey's original copyright notice.
173 
174 fft62: a library for number-theoretic transforms
175 
176 Copyright (C) 2013, David Harvey
177 
178 All rights reserved.
179 
180 Redistribution and use in source and binary forms, with or without
181 modification, are permitted provided that the following conditions are met:
182 
183 * Redistributions of source code must retain the above copyright notice, this
184  list of conditions and the following disclaimer.
185 * Redistributions in binary form must reproduce the above copyright notice,
186  this list of conditions and the following disclaimer in the documentation
187  and/or other materials provided with the distribution.
188 
189 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
190 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
191 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
192 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
193 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
194 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
195 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
196 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
197 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
198 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
199 
200 ****************************************************************************/
201 
202 #pragma GCC diagnostic pop
PGFFT(const PGFFT &)=delete
void apply(const std::complex< double > *src, std::complex< double > *dst) const
PGFFT(long n)
Definition: PGFFT.cpp:1521
T value_type
Definition: PGFFT.h:71
value_type * allocate(std::size_t n)
Definition: PGFFT.h:77
PGFFT(PGFFT &&)=delete
aligned_allocator() noexcept
Definition: PGFFT.h:73
Definition: PGFFT.h:30
static bool simd_enabled()
Definition: PGFFT.cpp:83
static void * aligned_allocate(std::size_t n, std::size_t nelts)
Definition: PGFFT.cpp:169
bool operator!=(aligned_allocator< U > const &y) noexcept
Definition: PGFFT.h:102
PGFFT & operator=(PGFFT &&)=delete
Definition: PGFFT.h:69
aligned_allocator(aligned_allocator< U > const &) noexcept
Definition: PGFFT.h:74
Definition: apiAttributes.h:21
PGFFT & operator=(const PGFFT &)=delete
std::vector< T, aligned_allocator< T > > aligned_vector
Definition: PGFFT.h:109
bool operator==(aligned_allocator< U > const &) noexcept
Definition: PGFFT.h:95
static void aligned_deallocate(void *p)
Definition: PGFFT.cpp:177
void apply(std::complex< double > *v) const
Definition: PGFFT.h:44
void deallocate(value_type *p, std::size_t) noexcept
Definition: PGFFT.h:88