remove unsupported erf(c)inv related host functionality

Change-Id: I665c33616359a0124b5552076359d2f8faa54930
This commit is contained in:
Maneesh Gupta
2017-07-14 11:31:40 +05:30
والد 3690fbcc33
کامیت cc6e6b2a0a
3فایلهای تغییر یافته به همراه0 افزوده شده و 128 حذف شده
@@ -820,16 +820,6 @@ __host__ float modff(float x, float *iptr)
return std::modf(x, iptr);
}
__host__ float erfcinvf(float y)
{
return __hip_host_erfcinvf(y);
}
__host__ double erfcinv(double y)
{
return __hip_host_erfcinv(y);
}
__host__ double fdivide(double x, double y)
{
return x/y;
@@ -937,16 +927,6 @@ __host__ void sincospi(double x, double *sptr, double *cptr)
*cptr = std::cos(HIP_PI*x);
}
//__host__ float normcdfinvf(float x)
//{
// return std::sqrt(2) * erfinvf(2*x-1);
//}
//__host__ double normcdfinv(double x)
//{
// return std::sqrt(2) * erfinv(2*x-1);
//}
__host__ float nextafterf(float x, float y)
{
return std::nextafter(x, y);