mirror of
https://github.com/boostorg/math.git
synced 2026-01-19 04:22:09 +00:00
Add GPU support to normal dist
Add SYCL testing of normal dist Add CUDA testing of normal dist Add NVRTC testing of normal dist NVRTC fixes Move headers for NVRTC support Add GPU support to inverse gaussian dist Add NVRTC testing of inverse Gaussian dist Add CUDA testing of inverse gaussian dist Add SYCL testing of inverse gaussian dist Add GPU support to lognormal dist Add SYCL testing of lognormal dist Add CUDA testing of lognormal dist Add nvrtc testing of lognormal dist Add GPU support to negative binomial dist Avoid float_prior on GPU platform Add NVRTC testing of negative binomial dist Fix ambiguous use of nextafter Add CUDA testing of negative binomial dist Fix float_prior workaround Add SYCL testing of negative binomial dist Add GPU support to non_central_beta dist Add SYCL testing of nc beta dist Add CUDA testing of nc beta dist Enable generic dist handling on GPU Add GPU support to brent_find_minima Add NVRTC testing of nc beta dist Add utility header Replace non-functional macro with new function Add GPU support to non central chi squared dist Add SYCL testing of non central chi squared dist Add missing macro definition Markup generic quantile finder Add CUDA testing of non central chi squared dist Add NVRTC testing of non central chi squared dist Add GPU support to the non-central f dist Add SYCL testing of ncf Add CUDA testing of ncf dist Add NVRTC testing of ncf dist Add GPU support to students_t dist Add SYCL testing of students_t dist Add CUDA testing of students_t Add NVRTC testing of students_t dist Workaround for header cycle Add GPU support to pareto dist Add SYCL testing of pareto dist Add CUDA testing of pareto dist Add NVRTC testing of pareto dist Add missing header Add GPU support to poisson dist Add SYCL testing of poisson dist Add CUDA testing of poisson dist Add NVRTC testing of poisson dist Add forward decl for NVRTC platform Add GPU support to rayleigh dist Add CUDA testing of rayleigh dist Add SYCL testing of rayleigh dist Add NVRTC testing of rayleigh dist Add GPU support to triangular dist Add SYCL testing of triangular dist Add NVRTC testing of triangular dist Add CUDA testing of triangular dist Add GPU support to the uniform dist Add CUDA testing of uniform dist Add SYCL testing of uniform dist Add NVRTC testing of uniform dist Fix missing header Add markers to docs
This commit is contained in:
@@ -8,21 +8,28 @@
|
||||
|
||||
// test_triangular.cpp
|
||||
|
||||
#ifndef SYCL_LANGUAGE_VERSION
|
||||
#include <pch.hpp>
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning(disable: 4127) // conditional expression is constant.
|
||||
# pragma warning(disable: 4305) // truncation from 'long double' to 'float'
|
||||
#endif
|
||||
|
||||
#include <boost/math/tools/config.hpp>
|
||||
|
||||
#ifndef BOOST_MATH_NO_REAL_CONCEPT_TESTS
|
||||
#include <boost/math/concepts/real_concept.hpp> // for real_concept
|
||||
#endif
|
||||
|
||||
#define BOOST_TEST_MAIN
|
||||
#include <boost/test/unit_test.hpp> // Boost.Test
|
||||
#include <boost/test/tools/floating_point_comparison.hpp>
|
||||
|
||||
#include <boost/math/distributions/triangular.hpp>
|
||||
using boost::math::triangular_distribution;
|
||||
#include <boost/math/tools/test.hpp>
|
||||
#include "../include_private/boost/math/tools/test.hpp"
|
||||
#include <boost/math/special_functions/fpclassify.hpp>
|
||||
#include "test_out_of_range.hpp"
|
||||
|
||||
@@ -463,8 +470,11 @@ void test_spots(RealType)
|
||||
BOOST_CHECK_CLOSE_FRACTION(
|
||||
mode(tridef), static_cast<RealType>(0), tolerance);
|
||||
// skewness:
|
||||
// On device the result does not get flushed exactly to zero so the eps difference is by default huge
|
||||
#ifndef BOOST_MATH_HAS_GPU_SUPPORT
|
||||
BOOST_CHECK_CLOSE_FRACTION(
|
||||
median(tridef), static_cast<RealType>(0), tolerance);
|
||||
#endif
|
||||
// https://reference.wolfram.com/language/ref/Skewness.html skewness{-1, 0, +1} = 0
|
||||
// skewness[triangulardistribution{-1, 0, +1}] does not compute a result.
|
||||
// skewness[triangulardistribution{0, +1}] result == 0
|
||||
|
||||
Reference in New Issue
Block a user