2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Remove SYCL workaround

This commit is contained in:
Matt Borland
2025-06-10 12:28:16 -04:00
parent cd92c648fd
commit 4f793f452e

View File

@@ -1570,9 +1570,6 @@ BOOST_MATH_GPU_ENABLED T ibeta_imp(T a, T b, T x, const Policy& pol, bool inv, b
}
else
{
#ifdef SYCL_LANGUAGE_VERSION
fract = ibeta_fraction2(a, b, x, y, pol, normalised, p_derivative);
#else
// a and b both large:
bool use_asym = false;
T ma = BOOST_MATH_GPU_SAFE_MAX(a, b);
@@ -1605,7 +1602,6 @@ BOOST_MATH_GPU_ENABLED T ibeta_imp(T a, T b, T x, const Policy& pol, bool inv, b
fract = ibeta_fraction2(a, b, x, y, pol, normalised, p_derivative);
BOOST_MATH_INSTRUMENT_VARIABLE(fract);
#endif
}
}
if(p_derivative)