#pragma once #include using cuFloatComplex = hipFloatComplex; using cuDoubleComplex = hipDoubleComplex; #ifndef make_cuFloatComplex #define make_cuFloatComplex make_hipFloatComplex #endif #ifndef make_cuDoubleComplex #define make_cuDoubleComplex make_hipDoubleComplex #endif __host__ __device__ inline float cuCrealf(cuFloatComplex z) { return z.x; } __host__ __device__ inline float cuCimagf(cuFloatComplex z) { return z.y; } __host__ __device__ inline double cuCreal(cuDoubleComplex z) { return z.x; } __host__ __device__ inline double cuCimag(cuDoubleComplex z) { return z.y; }