8#ifndef EIGEN_BESSELFUNCTIONS_BFLOAT16_H
9#define EIGEN_BESSELFUNCTIONS_BFLOAT16_H
12#include "./InternalHeaderCheck.h"
19EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_i0(
const Eigen::bfloat16& x) {
20 return Eigen::bfloat16(Eigen::numext::bessel_i0(
static_cast<float>(x)));
23EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_i0e(
const Eigen::bfloat16& x) {
24 return Eigen::bfloat16(Eigen::numext::bessel_i0e(
static_cast<float>(x)));
27EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_i1(
const Eigen::bfloat16& x) {
28 return Eigen::bfloat16(Eigen::numext::bessel_i1(
static_cast<float>(x)));
31EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_i1e(
const Eigen::bfloat16& x) {
32 return Eigen::bfloat16(Eigen::numext::bessel_i1e(
static_cast<float>(x)));
35EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_j0(
const Eigen::bfloat16& x) {
36 return Eigen::bfloat16(Eigen::numext::bessel_j0(
static_cast<float>(x)));
39EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_j1(
const Eigen::bfloat16& x) {
40 return Eigen::bfloat16(Eigen::numext::bessel_j1(
static_cast<float>(x)));
43EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_y0(
const Eigen::bfloat16& x) {
44 return Eigen::bfloat16(Eigen::numext::bessel_y0(
static_cast<float>(x)));
47EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_y1(
const Eigen::bfloat16& x) {
48 return Eigen::bfloat16(Eigen::numext::bessel_y1(
static_cast<float>(x)));
51EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_k0(
const Eigen::bfloat16& x) {
52 return Eigen::bfloat16(Eigen::numext::bessel_k0(
static_cast<float>(x)));
55EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_k0e(
const Eigen::bfloat16& x) {
56 return Eigen::bfloat16(Eigen::numext::bessel_k0e(
static_cast<float>(x)));
59EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_k1(
const Eigen::bfloat16& x) {
60 return Eigen::bfloat16(Eigen::numext::bessel_k1(
static_cast<float>(x)));
63EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::bfloat16
bessel_k1e(
const Eigen::bfloat16& x) {
64 return Eigen::bfloat16(Eigen::numext::bessel_k1e(
static_cast<float>(x)));
Namespace containing all symbols from the Eigen library.
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_y1_op< typename Derived::Scalar >, const Derived > bessel_y1(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:269
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_k0e_op< typename Derived::Scalar >, const Derived > bessel_k0e(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:142
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_k0_op< typename Derived::Scalar >, const Derived > bessel_k0(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:120
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_k1_op< typename Derived::Scalar >, const Derived > bessel_k1(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:163
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_i1_op< typename Derived::Scalar >, const Derived > bessel_i1(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:77
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_i0e_op< typename Derived::Scalar >, const Derived > bessel_i0e(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:56
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_i1e_op< typename Derived::Scalar >, const Derived > bessel_i1e(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:99
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_j1_op< typename Derived::Scalar >, const Derived > bessel_j1(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:248
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_y0_op< typename Derived::Scalar >, const Derived > bessel_y0(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:227
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_i0_op< typename Derived::Scalar >, const Derived > bessel_i0(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:34
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_k1e_op< typename Derived::Scalar >, const Derived > bessel_k1e(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:185
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_bessel_j0_op< typename Derived::Scalar >, const Derived > bessel_j0(const Eigen::ArrayBase< Derived > &x)
Definition BesselFunctionsArrayAPI.h:206