added missing hipCmul() to nvcc_detail/hip_complex.h

[ROCm/clr commit: 6815c7bdd7]
Этот коммит содержится в:
Nico Trost
2018-06-14 21:49:54 +02:00
родитель 15a1689939
Коммит 3eb353ec44
+4
Просмотреть файл
@@ -83,6 +83,10 @@ __device__ __host__ static inline hipDoubleComplex hipCsub(hipDoubleComplex p, h
return cuCsub(p, q);
}
__device__ __host__ static inline hipDoubleComplex hipCmul(hipDoubleComplex p, hipDoubleComplex q) {
return cuCmul(p, q);
}
__device__ __host__ static inline hipDoubleComplex hipCdiv(hipDoubleComplex p, hipDoubleComplex q) {
return cuCdiv(p, q);
}