Use accelerator_scope for create_marker and create_blocking_marker.

As optimization when system-scope is not needed.
This commit is contained in:
Ben Sander
2017-05-23 22:59:54 -05:00
parent ca07615c37
commit 2d5b3359c6
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -942,10 +942,10 @@ __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__ double normcdfinv(double x)
//{
// return std::sqrt(2) * erfinv(2*x-1);
//}
__host__ float nextafterf(float x, float y)
{