-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathComplex.h
194 lines (159 loc) · 7.84 KB
/
Complex.h
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/* The information in this file is
* Copyright (C) 2011, Sven De Smet <[email protected]>
* and is subject to the terms and conditions of the
* GNU Lesser General Public License Version 2.1
* The license text is available from
* http://www.gnu.org/licenses/lgpl.html
*/
#ifndef CCOMPLEX_H_
#define CCOMPLEX_H_
#include <stdlib.h>
#include <math.h>
#include <string>
#define GlobalAlignLevel 5
template <class D> class AlignedArray {
private:
unsigned char* mem;
public:
D* alignedData;
AlignedArray(int size, int alignLevel = GlobalAlignLevel) {
mem = new unsigned char[size * sizeof(D) + ((1 << alignLevel) - 1)];
alignedData = (D*) ((((long int) mem + ((1 << alignLevel) - 1)) >> alignLevel) << alignLevel);
}
inline D& operator [] (int index) { return alignedData[index]; }
inline D operator [] (int index) const { return alignedData[index]; }
~AlignedArray() { delete [] mem; }
};
template <int plannarLevel, int elementLevel, class Array, class D>
class ArrayPlannarizer {
private:
static const int plannarMask = (1 << plannarLevel) - 1;
Array& array;
public:
ArrayPlannarizer(Array& iArray) : array(iArray) {}
inline int getPosition(int index, int element) const {
return ((index >> plannarLevel) << (plannarLevel + elementLevel)) | (element << plannarLevel) | (index & plannarMask);
}
inline void setElement(int index, int element, const D value) { array[getPosition(index, element)] = value; }
inline D getElement(int index, int element) const { return array[getPosition(index, element)]; }
};
#define ScaleFact 16
template <class R>
class Complex {
template <class S> friend Complex<S> operator + (const Complex<S> a, const Complex<S> b);
template <class S> friend Complex<S> operator - (const Complex<S> a, const Complex<S> b);
template <class S> friend Complex<S> operator * (const Complex<S> a, const Complex<S> b);
template <class S> friend Complex<S> operator >> (const Complex<S> a, int shift);
template <class S> friend Complex<S> operator * (const S a, const Complex<S> b);
template <class S> friend Complex<S> operator / (const Complex<S> b, const S a);
template <class S> friend bool operator == (const Complex<S> a, const Complex<S> b);
private:
R r, i;
public:
Complex<R>(R iR, R iI) : r(iR), i(iI) { }
Complex<R>() { }
Complex<R>(R iR) : r(iR), i((R) 0.0) { }
static Complex<R> unit(double iPhase) { return Complex<R>(cos(iPhase), sin(iPhase)); }
void print(bool newline = false) const { printf("(%f, %f)%s", r, i, newline ? "\n" : ""); }
std::string toString() const { char result[128]; sprintf(result, "(%f, %f)", r, i); return result; }
R getNorm() const { return sqrt(getNormSquared()); }
R getNormSquared() const { return ((*this) * ((*this).getConjugate())).getReal(); }
Complex<R> getNormalizedComplex() const { return (*this)/((R) sqrt(getNormSquared())); }
Complex<R> getConjugate() const { return Complex<R>(r, -i); }
static Complex<R> randomUnit() { return Complex<R>(((R) rand())/RAND_MAX, ((R) rand())/RAND_MAX); }
inline R getReal() const { return r; }
inline void setReal(R value) { r = value; }
inline R getImaginary() const { return i; }
inline void setImaginary(R value) { i = value; }
double getAngle() const {
Complex<R> n = getNormalizedComplex();
return atan2(n.i, n.r);
}
};
template <class R> Complex<R> inline operator + (const Complex<R> a, const Complex<R> b) { return Complex<R>(a.r + b.r, a.i + b.i); }
template <class R> Complex<R> inline operator - (const Complex<R> a, const Complex<R> b) { return Complex<R>(a.r - b.r, a.i - b.i); }
template <class R> bool operator == (const Complex<R> a, const Complex<R> b) { return (a.r == b.r) && (a.i == b.i); }
template <class R> Complex<R> inline operator >> (const Complex<R> a, int shift) { return ((R) pow(0.5, shift)) * a; }
template <class R, class U, int L> R mul(R a, R b) { return (((U) a) * ((U) b)) >> L; }
template <class R> Complex<R> inline operator * (const R c, const Complex<R> b) { return Complex<R>(c * b.r, c * b.i); }
template <class R> Complex<R> inline operator * (const Complex<R> a, const Complex<R> b) {
return Complex<R>(a.r * b.r - a.i * b.i, a.r * b.i + a.i * b.r);
}
#define GlobalPlannarLevel 5
template <int plannarLevel, class D>
class PlannarizedComplexArray {
private:
typedef ArrayPlannarizer<plannarLevel, 1, AlignedArray<D>, D> PlannarizedArray;
PlannarizedArray* plannarizedData;
AlignedArray<D>* data;
int size;
int elements;
public:
PlannarizedComplexArray(int iSize) : size(iSize) {
int roundLevel = plannarLevel + 1;
elements = 2*size;
elements = roundLevel*((elements + ((1 << roundLevel) - 1))/roundLevel);
data = new AlignedArray<D>(elements);
plannarizedData = new PlannarizedArray(*data);
}
int getElements() const { return elements; }
int getSize() const { return size; }
void setElement(int index, Complex<D> value) {
plannarizedData->setElement(index, 0, value.getReal());
plannarizedData->setElement(index, 1, value.getImaginary());
}
Complex<D> getElement(int index) {
return Complex<D>(plannarizedData->getElement(index, 0), plannarizedData->getElement(index, 1));
}
D* getData() { return &(*data)[0]; }
~PlannarizedComplexArray() { delete plannarizedData; delete data; }
};
// NOTE: Integer specialization probably does not work correctly...
short int inline imul16(const short int a, const short int b) { return mul<short int, int, 16>(a, b); }
template <class R> R isub(R a, R b) { return ((a >> 1) - (b >> 1)); }
template <class R> R iadd(R a, R b) { return ((a >> 1) + (b >> 1)); }
short int inline isub16(const short int a, const short int b) { return isub<short int>(a, b); }
short int inline iadd16(const short int a, const short int b) { return iadd<short int>(a, b); }
short int inline isub32(const short int a, const short int b) { return isub<short int>(a, b); }
short int inline iadd32(const int a, const short int b) { return iadd<short int>(a, b); }
int inline imul16_32(const short int a, const short int b) { return mul<short int, int, 16>(a, b); }
template <> Complex<short int> inline operator * (const short int c, const Complex<short int> b) {
return Complex<short int>(imul16(c, b.r), imul16(c, b.i));
}
template <> Complex<short int> inline operator * (const Complex<short int> a, const Complex<short int> b) {
return Complex<short int>((((int) a.r * (int) b.r - (int) a.i * (int) b.i)) >> 14,
(((int) a.r * (int) b.i + (int) a.i * (int) b.r)) >> 14);
}
template <class R> Complex<R> inline operator / (const Complex<R> b, const R c) { return (1/c) * b; }
template <class D> class ComplexArray {
private:
AlignedArray<D>* data;
int size;
bool planar;
int planarGroupSize;
public:
ComplexArray(int iSize, bool iPlanar = true) : size(iSize), planar(iPlanar) {
data = new AlignedArray<D>(2*size);
planarGroupSize = planar ? size : 1;
}
D* getReals() { return &(*data)[0]; }
D* getImaginaries() { return planar ? &(*data)[size] : &(*data)[1]; }
D* getData() { return &(*data)[0]; }
void setElement(int index, Complex<D> value) {
if (planar) {
(*data)[index] = value.getReal();
(*data)[planarGroupSize + index] = value.getImaginary();
} else {
(*data)[2*index] = value.getReal();
(*data)[2*index + 1] = value.getImaginary();
}
}
Complex<D> getElement(int index) {
if (planar) { return Complex<D>((*data)[index], (*data)[planarGroupSize + index]); }
else { return Complex<D>((*data)[2*index], (*data)[2*index + 1]); }
}
int getSize() const { return size; }
bool getPlanar() const { return planar; }
~ComplexArray() { delete data; }
};
#endif