SWDEV-272811 - hipCabs returns a double and uses sqrtf, which maps to f32 operation. sqrt should be used instead

Change-Id: I4f74ee8853113fcebfa508bea9308ae93c7ad13b
Tento commit je obsažen v:
Jatin Chaudhary
2021-02-19 03:00:31 -08:00
odevzdal Jatin Chaudhary
rodič 3abd25b1e9
revize 474493b929
+1 -1
Zobrazit soubor
@@ -214,7 +214,7 @@ __device__ __host__ static inline hipDoubleComplex hipCdiv(hipDoubleComplex p, h
return ret;
}
__device__ __host__ static inline double hipCabs(hipDoubleComplex z) { return sqrtf(hipCsqabs(z)); }
__device__ __host__ static inline double hipCabs(hipDoubleComplex z) { return sqrt(hipCsqabs(z)); }
#if __cplusplus