Loading...
Searching...
No Matches
11#include <thrust/complex.h>
15#define Complex_f complex<float>
17#define Complex complex<double>
21#define cexp(z) thrust::exp(z)
23#define cimag(z) z.imag()
25#define creal(z) z.real()
27#define conj(z) thrust::conj(z)
29#define I Complex(0.0,1.0)
30#define I_f Complex_f(0.0,1.0f)