Merge pull request #520 from ntrost57/master

added missing hipCmul() to nvcc_detail/hip_complex.h

[ROCm/clr commit: a24f1d7353]
Этот коммит содержится в:
Maneesh Gupta
2018-06-19 09:37:50 +05:30
коммит произвёл GitHub
родитель c1f37d4fb5 3eb353ec44
Коммит 5b20f2ee29
+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);
}