Blame view

stim/math/complex.h 10.7 KB
8e4f8364   David Mayerich   started a new opt...
1
  /// CUDA compatible complex number class

81e0d221   David Mayerich   separated executa...
2
  

8e4f8364   David Mayerich   started a new opt...
3
4
  #ifndef STIM_COMPLEX

  #define STIM_COMPLEX

81e0d221   David Mayerich   separated executa...
5
  

8e4f8364   David Mayerich   started a new opt...
6
  #include "../cuda/cudatools/callable.h"

81e0d221   David Mayerich   separated executa...
7
8
9
10
11
12
13
  #include <cmath>

  #include <string>

  #include <sstream>

  #include <iostream>

  

  namespace stim

  {

6a53ac0c   David Mayerich   updated optics fi...
14
      enum complexComponentType {complexFull, complexReal, complexImaginary, complexMag, complexIntensity};

81e0d221   David Mayerich   separated executa...
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
  

  template <class T>

  struct complex

  {

      T r, i;

  

      //default constructor

      CUDA_CALLABLE complex()

      {

          r = 0;

  	   i = 0;

      }

  

      //constructor when given real and imaginary values

      CUDA_CALLABLE complex(T r, T i = 0)

      {

          this->r = r;

          this->i = i;

      }

  

  	//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;

  	}

  

      

  

      //return the current value multiplied by i

      CUDA_CALLABLE complex<T> imul()

      {

          complex<T> result;

          result.r = -i;

          result.i = r;

  

          return result;

      }

  

      //returns the complex signum (-1, 0, 1)

      CUDA_CALLABLE int sgn(){

          if(r > 0) return 1;

          else if(r < 0) return -1;

          else return (0 < i - i < 0);

      }

  

  	//ARITHMETIC OPERATORS--------------------

  

      //binary + operator (returns the result of adding two complex values)

      CUDA_CALLABLE complex<T> operator+ (const complex<T> rhs) const

      {

          complex<T> result;

          result.r = r + rhs.r;

          result.i = i + rhs.i;

          return result;

      }

  

  	CUDA_CALLABLE complex<T> operator+ (const T rhs) const

      {

          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) const

      {

          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) const

      {

          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) const

      {

          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)

      {

          	this->r = rhs;

          	this->i = 0;

  

  		return *this;

      }

  

      //arithmetic assignment operators

      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;

      }

  

  	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;

      }

  

      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;

      }

  	//divide and assign

  	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;

      }

  

      //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()

  	{

  		complex<T> result;

  		result.r = (T)std::log(std::sqrt(r * r + i * i));

  		result.i = (T)std::atan2(i, r);

  

  

  		return result;

  	}

  

  	CUDA_CALLABLE complex<T> exp()

  	{

  		complex<T> result;

  

  		T e_r = std::exp(r);

  		result.r = e_r * (T)std::cos(i);

  		result.i = e_r * (T)std::sin(i);

  

  		return result;

  	}

  

81e0d221   David Mayerich   separated executa...
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
  	CUDA_CALLABLE complex<T> pow(T y)

  	{

  		complex<T> result;

  

  		result = log() * y;

  

  		return result.exp();

  	}

  

  	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);

  		T theta_p = theta/2.0f;

  

  		//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 str()

  	{

  		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)

  	{

          if(r == rhs && i == 0)

              return true;

          return false;

      }

  

      CUDA_CALLABLE bool operator!=(T rhs)

      {

          if(r != rhs || i != 0)

              return true;

          return false;

      }

  

      CUDA_CALLABLE bool operator<(complex<T> rhs){

      	return abs() < rhs.abs();

      }

      CUDA_CALLABLE bool operator<=(complex<T> rhs){

      	return abs() <= rhs.abs();

      }

      CUDA_CALLABLE bool operator>(complex<T> rhs){

      	return abs() > rhs.abs();

      }

      CUDA_CALLABLE bool operator >=(complex<T> rhs){

      	return abs() >= rhs.abs();

      }

  

  	//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;

  	}

  

8e4f8364   David Mayerich   started a new opt...
324
325
  	

  

81e0d221   David Mayerich   separated executa...
326
327
  };

  

8e4f8364   David Mayerich   started a new opt...
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
  /// Cast an array of complex values to an array of real values

  template<typename T>

  static void real(T* r, complex<T>* c, size_t n){

  	for(size_t i = 0; i < n; i++)

  		r[i] = c[i].real();

  }

  

  /// Cast an array of complex values to an array of real values

  template<typename T>

  static void imag(T* r, complex<T>* c, size_t n){

  	for(size_t i = 0; i < n; i++)

  		r[i] = c[i].imag();

  }

  

  /// Calculate the magnitude of an array of complex values

  template<typename T>

  static void abs(T* m, complex<T>* c, size_t n){

  	for(size_t i = 0; i < n; i++)

  		m[i] = c[i].abs();

  }

  

98eecaa9   David Mayerich   VS and win32 updates
349
350
351
352
353
354
355
  /// Calculate the intensity of an array of complex values

  template<typename T>

  static void intensity(T* m, complex<T>* c, size_t n){

  	for(size_t i = 0; i < n; i++)

  		m[i] = pow(c[i].abs(), 2);

  }

  

81e0d221   David Mayerich   separated executa...
356
357
358
359
360
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
  }	//end RTS namespace

  

  //addition

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> operator+(const double a, const stim::complex<T> b)

  {

      return stim::complex<T>((T)a + b.r, b.i);

  }

  

  //subtraction with a real value

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> operator-(const double a, const stim::complex<T> b)

  {

      return stim::complex<T>((T)a - b.r, -b.i);

  }

  

  //minus sign

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> operator-(const stim::complex<T> &rhs)

  {

      return stim::complex<T>(-rhs.r, -rhs.i);

  }

  

  //multiply a T value by a complex value

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> operator*(const double a, const stim::complex<T> b)

  {

      return stim::complex<T>((T)a * b.r, (T)a * b.i);

  }

  

  //divide a T value by a complex value

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> operator/(const double a, const stim::complex<T> b)

  {

      stim::complex<T> result;

  

      T denom = b.r * b.r + b.i * b.i;

  

      result.r = ((T)a * b.r) / denom;

      result.i = -((T)a * b.i) / denom;

  

      return result;

  }

  

  

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> pow(stim::complex<T> x, T y)

  {

  	return x.pow(y);

  }

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> pow(stim::complex<T> x, int y)

  {

  	return x.pow(y);

  }

  

  //log function

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> log(stim::complex<T> x)

  {

  	return x.log();

  }

  

  //exp function

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> exp(stim::complex<T> x)

  {

  	return x.exp();

  }

  

  //sqrt function

  template<typename T>

  CUDA_CALLABLE static stim::complex<T> sqrt(stim::complex<T> x)

  {

  	return x.sqrt();

  }

  

  

  template <typename T>

  CUDA_CALLABLE static T abs(stim::complex<T> a)

  {

      return a.abs();

  }

  

  template <typename T>

  CUDA_CALLABLE static T real(stim::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(stim::complex<T> a)

  {

      return a.i;

  }

  

81e0d221   David Mayerich   separated executa...
458
459
460
461
462
463
464
465
466
467
  template<class A>

  CUDA_CALLABLE stim::complex<A> sin(const stim::complex<A> x)

  {

  	stim::complex<A> result;

  	result.r = (A)std::sin(x.r) * (A)std::cosh(x.i);

  	result.i = (A)std::cos(x.r) * (A)std::sinh(x.i);

  

  	return result;

  }

  

81e0d221   David Mayerich   separated executa...
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
  template<class A>

  CUDA_CALLABLE stim::complex<A> cos(const stim::complex<A> x)

  {

  	stim::complex<A> result;

  	result.r = (A)std::cos(x.r) * (A)std::cosh(x.i);

  	result.i = -((A)std::sin(x.r) * (A)std::sinh(x.i));

  

  	return result;

  }

  

  

  template<class A>

  std::ostream& operator<<(std::ostream& os, stim::complex<A> x)

  {

      os<<x.str();

      return os;

  }

  

  template<class A>

  std::istream& operator>>(std::istream& is, stim::complex<A>& x)

  {

      A r, i;

  	r = i = 0;		//initialize the real and imaginary parts to zero

      is>>r;			//parse

      is>>i;

  

      x.real(r);		//assign the parsed values to x

      x.imag(i);

  

      return is;		//return the stream

  }

  

81e0d221   David Mayerich   separated executa...
500
  #endif