Fix normcdf signature

Change-Id: I36b225cfe03db687f295aeea8a006d535bc14231


[ROCm/clr commit: 260c0dc4ab]
Tá an tiomantas seo le fáil i:
Maneesh Gupta
2016-08-17 22:07:06 +05:30
tuismitheoir 8747679e06
tiomantas 330052d54b
+1 -1
Féach ar an gComhad
@@ -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;
}