Add SYCL testing of fisher f dist
Add CUDA fisher f dist testing
Add NVRTC fisher f dist testing
Add GPU support to gamma dist
Add SYCL testing of gamma dist
Add CUDA gamma dist testing
Add NVRTC gamma dist testing
Reduce number of threads per block since it can crash CI
Add GPU support to the geometric dist
Add SYCL testing of geometric dist
Add cuda::std::tie
Add GPU support to inv_discrete_quantile
Add CUDA testing of geometric dist
Add NVRTC testing of geometric dist
Add SYCL testing of inverse_chi_squared dist
Adjust tol
Add NVRTC inverse chi squared dist testing
Add CUDA inverse chi squared dist testing
Add GPU support to inverse gamma dist
Add SYCL testing to inverse gamma dist
Add NVRTC testing of inverse gamma dist
Add CUDA testing of inverse gamma dist
On Linux, GNU's libstdc++, which is the default stdlib for icc and clang,
cannot parse the <iomanip> header in version 4.5+ (which thankfully neither
compiler advises the use of yet), as it's original C++98-friendly
implementation has been replaced with a gnu++0x implementation.
<boost/detail/iomanip.hpp> is a portable implementation of <iomanip>, providing
boost::detail::setfill, boost::detail::setbase, boost::detail::setw,
boost::detail::setprecision, boost::detail::setiosflags and
boost::detail::resetiosflags.
[SVN r68140]
Added first cut of the non-central chi squared distribution.
Removed almost all occurrences of real_cast: replaced with calls to the truncation/rounding functions instead.
[SVN r42744]
Fixed a lot of gcc-linux issues: mostly missing "using namespace std" declarations.
Added new concept check to test for these kinds of failures at compile time.
[SVN r3344]