Blame view

math/complex.h 9.07 KB
57729e5b   David Mayerich   changed directory...
1
2
3
4
5
6
7
  /*RTS Complex number class.  This class is CUDA compatible,
  and can therefore be used in CUDA code and on CUDA devices.
  */
  
  #ifndef RTS_COMPLEX
  #define RTS_COMPLEX
  
7731cf24   David Mayerich   fixed precision p...
8
  #include "../cuda/callable.h"
57729e5b   David Mayerich   changed directory...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  #include <cmath>
  #include <string>
  #include <sstream>
  #include <iostream>
  
  namespace rts
  {
  
  template <class T>
  struct complex
  {
      T r, i;
  
      //default constructor
      CUDA_CALLABLE complex()
      {
7731cf24   David Mayerich   fixed precision p...
25
          r = 0;
559d0fcb   David Mayerich   wave interactions...
26
27
28
29
30
31
32
33
  	   i = 0;
      }
  
      //constructor when given real and imaginary values
      CUDA_CALLABLE complex(T r, T i = 0)
      {
          this->r = r;
          this->i = i;
57729e5b   David Mayerich   changed directory...
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
      }
  
  	//access methods
  	CUDA_CALLABLE T real()
  	{
  		return r;
  	}
  
  	CUDA_CALLABLE T real(T r_val)
  	{
  		r = r_val;
  		return r_val;
  	}
  
  	CUDA_CALLABLE T imag()
  	{
  		return i;
  	}
  	CUDA_CALLABLE T imag(T i_val)
  	{
  		i = i_val;
  		return i_val;
  	}
  
559d0fcb   David Mayerich   wave interactions...
58
      
57729e5b   David Mayerich   changed directory...
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
  
      //return the current value multiplied by i
      CUDA_CALLABLE complex<T> imul()
      {
          complex<T> result;
          result.r = -i;
          result.i = r;
  
          return result;
      }
  
  	//ARITHMETIC OPERATORS--------------------
  
      //binary + operator (returns the result of adding two complex values)
      CUDA_CALLABLE complex<T> operator+ (const complex<T> rhs)
      {
          complex<T> result;
          result.r = r + rhs.r;
          result.i = i + rhs.i;
          return result;
      }
  
  	CUDA_CALLABLE complex<T> operator+ (const T rhs)
      {
          complex<T> result;
          result.r = r + rhs;
          result.i = i;
          return result;
      }
  
      //binary - operator (returns the result of adding two complex values)
      CUDA_CALLABLE complex<T> operator- (const complex<T> rhs)
      {
          complex<T> result;
          result.r = r - rhs.r;
          result.i = i - rhs.i;
          return result;
      }
  
      //binary - operator (returns the result of adding two complex values)
      CUDA_CALLABLE complex<T> operator- (const T rhs)
      {
          complex<T> result;
          result.r = r - rhs;
          result.i = i;
          return result;
      }
  
      //binary MULTIPLICATION operators (returns the result of multiplying complex values)
      CUDA_CALLABLE complex<T> operator* (const complex<T> rhs)
      {
          complex<T> result;
          result.r = r * rhs.r - i * rhs.i;
          result.i = r * rhs.i + i * rhs.r;
          return result;
      }
      CUDA_CALLABLE complex<T> operator* (const T rhs)
      {
          return complex<T>(r * rhs, i * rhs);
      }
  
      //binary DIVISION operators (returns the result of dividing complex values)
      CUDA_CALLABLE complex<T> operator/ (const complex<T> rhs)
      {
          complex<T> result;
          T denom = rhs.r * rhs.r + rhs.i * rhs.i;
          result.r = (r * rhs.r + i * rhs.i) / denom;
          result.i = (- r * rhs.i + i * rhs.r) / denom;
  
          return result;
      }
      CUDA_CALLABLE complex<T> operator/ (const T rhs)
      {
          return complex<T>(r / rhs, i / rhs);
      }
  
      //ASSIGNMENT operators-----------------------------------
      CUDA_CALLABLE complex<T> & operator=(const complex<T> &rhs)
      {
          //check for self-assignment
          if(this != &rhs)
          {
              this->r = rhs.r;
              this->i = rhs.i;
          }
          return *this;
      }
      CUDA_CALLABLE complex<T> & operator=(const T &rhs)
      {
3b012a80   David Mayerich   added code for co...
148
149
          	this->r = rhs;
          	this->i = 0;
57729e5b   David Mayerich   changed directory...
150
151
152
153
154
155
156
157
  
  		return *this;
      }
  
      //arithmetic assignment operators
      CUDA_CALLABLE complex<T> operator+=(const complex<T> &rhs)
      {
  		*this = *this + rhs;
3b012a80   David Mayerich   added code for co...
158
          	return *this;
57729e5b   David Mayerich   changed directory...
159
160
161
162
      }
      CUDA_CALLABLE complex<T> operator+=(const T &rhs)
      {
  		*this = *this + rhs;
3b012a80   David Mayerich   added code for co...
163
          	return *this;
57729e5b   David Mayerich   changed directory...
164
165
      }
  
8d4f0940   David Mayerich   ERROR in plane wa...
166
167
168
169
170
171
172
173
174
175
176
  	CUDA_CALLABLE complex<T> operator-=(const complex<T> &rhs)
      {
  		*this = *this - rhs;
          	return *this;
      }
      CUDA_CALLABLE complex<T> operator-=(const T &rhs)
      {
  		*this = *this - rhs;
          	return *this;
      }
  
57729e5b   David Mayerich   changed directory...
177
178
179
      CUDA_CALLABLE complex<T> operator*=(const complex<T> &rhs)
      {
  		*this = *this * rhs;
3b012a80   David Mayerich   added code for co...
180
          	return *this;
57729e5b   David Mayerich   changed directory...
181
182
183
184
      }
  	CUDA_CALLABLE complex<T> operator*=(const T &rhs)
      {
  		*this = *this * rhs;
3b012a80   David Mayerich   added code for co...
185
          	return *this;
57729e5b   David Mayerich   changed directory...
186
187
188
189
190
      }
  	//divide and assign
  	CUDA_CALLABLE complex<T> operator/=(const complex<T> &rhs)
      {
  		*this = *this / rhs;
3b012a80   David Mayerich   added code for co...
191
          	return *this;
57729e5b   David Mayerich   changed directory...
192
193
194
195
      }
      CUDA_CALLABLE complex<T> operator/=(const T &rhs)
      {
  		*this = *this / rhs;
3b012a80   David Mayerich   added code for co...
196
          	return *this;
57729e5b   David Mayerich   changed directory...
197
198
199
200
201
202
203
204
205
206
      }
  
      //absolute value operator (returns the absolute value of the complex number)
  	CUDA_CALLABLE T abs()
  	{
  		return std::sqrt(r * r + i * i);
  	}
  
  	CUDA_CALLABLE complex<T> log()
  	{
3b012a80   David Mayerich   added code for co...
207
208
209
  		complex<T> result;
  		result.r = (T)std::log(std::sqrt(r * r + i * i));
  		result.i = (T)std::atan2(i, r);
57729e5b   David Mayerich   changed directory...
210
211
  
  
3b012a80   David Mayerich   added code for co...
212
  		return result;
57729e5b   David Mayerich   changed directory...
213
214
215
216
  	}
  
  	CUDA_CALLABLE complex<T> exp()
  	{
3b012a80   David Mayerich   added code for co...
217
  		complex<T> result;
57729e5b   David Mayerich   changed directory...
218
  
3b012a80   David Mayerich   added code for co...
219
220
221
  		T e_r = std::exp(r);
  		result.r = e_r * (T)std::cos(i);
  		result.i = e_r * (T)std::sin(i);
57729e5b   David Mayerich   changed directory...
222
  
3b012a80   David Mayerich   added code for co...
223
  		return result;
57729e5b   David Mayerich   changed directory...
224
225
226
227
228
229
230
231
232
233
  	}
  
  	/*CUDA_CALLABLE complex<T> pow(int y)
  	{
  
          return pow((double)y);
  	}*/
  
  	CUDA_CALLABLE complex<T> pow(T y)
  	{
3b012a80   David Mayerich   added code for co...
234
  		complex<T> result;
57729e5b   David Mayerich   changed directory...
235
  
8d4f0940   David Mayerich   ERROR in plane wa...
236
  		result = log() * y;
57729e5b   David Mayerich   changed directory...
237
  
3b012a80   David Mayerich   added code for co...
238
  		return result.exp();
57729e5b   David Mayerich   changed directory...
239
240
241
242
243
244
245
246
247
248
249
250
  	}
  
  	CUDA_CALLABLE complex<T> sqrt()
  	{
  		complex<T> result;
  
  		//convert to polar coordinates
  		T a = std::sqrt(r*r + i*i);
  		T theta = std::atan2(i, r);
  
  		//find the square root
  		T a_p = std::sqrt(a);
7731cf24   David Mayerich   fixed precision p...
251
  		T theta_p = theta/2.0f;
57729e5b   David Mayerich   changed directory...
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
  
  		//convert back to cartesian coordinates
  		result.r = a_p * std::cos(theta_p);
  		result.i = a_p * std::sin(theta_p);
  
  		return result;
  	}
  
  	std::string toStr()
  	{
  		std::stringstream ss;
  		ss<<"("<<r<<","<<i<<")";
  
  		return ss.str();
  	}
  
  	//COMPARISON operators
  	CUDA_CALLABLE bool operator==(complex<T> rhs)
  	{
          if(r == rhs.r && i == rhs.i)
              return true;
          return false;
      }
  
      CUDA_CALLABLE bool operator==(T rhs)
  	{
7731cf24   David Mayerich   fixed precision p...
278
          if(r == rhs && i == 0)
57729e5b   David Mayerich   changed directory...
279
280
281
282
              return true;
          return false;
      }
  
8d4f0940   David Mayerich   ERROR in plane wa...
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
  	//CASTING operators
  	template < typename otherT >
  	operator complex<otherT>()
  	{
  		complex<otherT> result((otherT)r, (otherT)i);
  		return result;
  	}
  	template< typename otherT >
  	complex( const complex<otherT> &rhs)
  	{
  		r = (T)rhs.r;
  		i = (T)rhs.i;
  	}
  	template< typename otherT >
  	complex& operator=(const complex<otherT> &rhs)
  	{
  		r = (T)rhs.r;
  		i = (T)rhs.i;
  		return *this;
  	}
  
57729e5b   David Mayerich   changed directory...
304
305
306
307
308
309
310
311
  };
  
  }	//end RTS namespace
  
  //addition
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> operator+(const double a, const rts::complex<T> b)
  {
3b012a80   David Mayerich   added code for co...
312
      return rts::complex<T>((T)a + b.r, b.i);
57729e5b   David Mayerich   changed directory...
313
314
315
316
317
318
  }
  
  //subtraction with a real value
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> operator-(const double a, const rts::complex<T> b)
  {
3b012a80   David Mayerich   added code for co...
319
      return rts::complex<T>((T)a - b.r, -b.i);
57729e5b   David Mayerich   changed directory...
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
  }
  
  //minus sign
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> operator-(const rts::complex<T> &rhs)
  {
      return rts::complex<T>(-rhs.r, -rhs.i);
  }
  
  //multiply a T value by a complex value
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> operator*(const double a, const rts::complex<T> b)
  {
      return rts::complex<T>((T)a * b.r, (T)a * b.i);
  }
  
  //divide a T value by a complex value
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> operator/(const double a, const rts::complex<T> b)
  {
57729e5b   David Mayerich   changed directory...
340
341
342
343
      rts::complex<T> result;
  
      T denom = b.r * b.r + b.i * b.i;
  
3b012a80   David Mayerich   added code for co...
344
345
      result.r = ((T)a * b.r) / denom;
      result.i = -((T)a * b.i) / denom;
57729e5b   David Mayerich   changed directory...
346
347
348
349
  
      return result;
  }
  
57729e5b   David Mayerich   changed directory...
350
351
352
353
354
355
  
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> pow(rts::complex<T> x, T y)
  {
  	return x.pow(y);
  }
8d4f0940   David Mayerich   ERROR in plane wa...
356
357
358
359
360
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> pow(rts::complex<T> x, int y)
  {
  	return x.pow(y);
  }
57729e5b   David Mayerich   changed directory...
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
  
  //log function
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> log(rts::complex<T> x)
  {
  	return x.log();
  }
  
  //exp function
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> exp(rts::complex<T> x)
  {
  	return x.exp();
  }
  
  //sqrt function
  template<typename T>
  CUDA_CALLABLE static rts::complex<T> sqrt(rts::complex<T> x)
  {
  	return x.sqrt();
  }
  
  
  template <typename T>
  CUDA_CALLABLE static T abs(rts::complex<T> a)
  {
      return a.abs();
  }
  
  template <typename T>
  CUDA_CALLABLE static T real(rts::complex<T> a)
  {
      return a.r;
  }
  
  //template <typename T>
  CUDA_CALLABLE static float real(float a)
  {
      return a;
  }
  
  template <typename T>
  CUDA_CALLABLE static T imag(rts::complex<T> a)
  {
      return a.i;
  }
  
  //trigonometric functions
3b012a80   David Mayerich   added code for co...
409
410
411
412
413
414
415
416
417
418
  //template<class A>
  /*CUDA_CALLABLE static rts::complex<float> sinf(const rts::complex<float> x)
  {
  	rts::complex<float> result;
  	result.r = sinf(x.r) * coshf(x.i);
  	result.i = cosf(x.r) * sinhf(x.i);
  
  	return result;
  }*/
  
57729e5b   David Mayerich   changed directory...
419
420
421
422
  template<class A>
  CUDA_CALLABLE rts::complex<A> sin(const rts::complex<A> x)
  {
  	rts::complex<A> result;
3b012a80   David Mayerich   added code for co...
423
424
  	result.r = (A)std::sin(x.r) * (A)std::cosh(x.i);
  	result.i = (A)std::cos(x.r) * (A)std::sinh(x.i);
57729e5b   David Mayerich   changed directory...
425
426
427
428
  
  	return result;
  }
  
3b012a80   David Mayerich   added code for co...
429
430
431
432
433
434
435
436
437
438
439
  //floating point template
  //template<class A>
  /*CUDA_CALLABLE static rts::complex<float> cosf(const rts::complex<float> x)
  {
  	rts::complex<float> result;
  	result.r = cosf(x.r) * coshf(x.i);
  	result.i = -(sinf(x.r) * sinhf(x.i));
  
  	return result;
  }*/
  
57729e5b   David Mayerich   changed directory...
440
441
442
443
  template<class A>
  CUDA_CALLABLE rts::complex<A> cos(const rts::complex<A> x)
  {
  	rts::complex<A> result;
3b012a80   David Mayerich   added code for co...
444
445
  	result.r = (A)std::cos(x.r) * (A)std::cosh(x.i);
  	result.i = -((A)std::sin(x.r) * (A)std::sinh(x.i));
57729e5b   David Mayerich   changed directory...
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
  
  	return result;
  }
  
  
  template<class A>
  std::ostream& operator<<(std::ostream& os, rts::complex<A> x)
  {
      os<<x.toStr();
      return os;
  }
  
  //#if __GNUC__ > 3 && __GNUC_MINOR__ > 7
  //template<class T> using rtsComplex = rts::complex<T>;
  //#endif
  
  
  
  #endif