SWDEV-400136 - change make_complex function name to make_hipComplex

Change-Id: Ia276610286df80ec35fe11f303eb9919eeda87dd
Dieser Commit ist enthalten in:
Jatin Chaudhary
2023-05-11 23:25:05 +01:00
committet von Jatin Jaikishan Chaudhary
Ursprung 7d423570b0
Commit c0e2bd2278
@@ -95,7 +95,7 @@ __device__ __host__ static inline double hipCabs(hipDoubleComplex z) { return cu
typedef cuFloatComplex hipComplex;
__device__ __host__ static inline hipComplex make_Complex(float x, float y) {
__device__ __host__ static inline hipComplex make_hipComplex(float x, float y) {
return make_cuComplex(x, y);
}