Fix normcdf signature

Change-Id: I36b225cfe03db687f295aeea8a006d535bc14231


[ROCm/hip commit: 69f005f5b2]
Cette révision appartient à :
Maneesh Gupta
2016-08-17 22:07:06 +05:30
Parent 1fc39ff469
révision cf21de7c18
+1 -1
Voir le fichier
@@ -1389,7 +1389,7 @@ __device__ double norm4d(double a, double b, double c, double d)
double y = c*c + d*d;
return hc::precise_math::sqrt(x+y);
}
__device__ double normcdf(float y)
__device__ double normcdf(double y)
{
return ((hc::precise_math::erf(y)/HIP_SQRT_2) + 1)/2;
}