10#ifndef EIGEN_MATH_FUNCTIONS_GPU_H
11#define EIGEN_MATH_FUNCTIONS_GPU_H
14#include "../../InternalHeaderCheck.h"
23#if defined(EIGEN_GPUCC) && defined(EIGEN_USE_GPU)
25EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 plog<float4>(
const float4& a) {
26 return make_float4(logf(a.x), logf(a.y), logf(a.z), logf(a.w));
30EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 plog<double2>(
const double2& a) {
32 return make_double2(
log(a.x),
log(a.y));
36EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 plog1p<float4>(
const float4& a) {
37 return make_float4(log1pf(a.x), log1pf(a.y), log1pf(a.z), log1pf(a.w));
41EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 plog1p<double2>(
const double2& a) {
46EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 pexp<float4>(
const float4& a) {
47 return make_float4(expf(a.x), expf(a.y), expf(a.z), expf(a.w));
51EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 pexp<double2>(
const double2& a) {
53 return make_double2(
exp(a.x),
exp(a.y));
57EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 pexpm1<float4>(
const float4& a) {
58 return make_float4(expm1f(a.x), expm1f(a.y), expm1f(a.z), expm1f(a.w));
62EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 pexpm1<double2>(
const double2& a) {
67EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 psqrt<float4>(
const float4& a) {
68 return make_float4(sqrtf(a.x), sqrtf(a.y), sqrtf(a.z), sqrtf(a.w));
72EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 psqrt<double2>(
const double2& a) {
74 return make_double2(
sqrt(a.x),
sqrt(a.y));
78EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 prsqrt<float4>(
const float4& a) {
79 return make_float4(rsqrtf(a.x), rsqrtf(a.y), rsqrtf(a.z), rsqrtf(a.w));
83EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 prsqrt<double2>(
const double2& a) {
Namespace containing all symbols from the Eigen library.
Definition Core:137
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_sqrt_op< typename Derived::Scalar >, const Derived > sqrt(const Eigen::ArrayBase< Derived > &x)
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_expm1_op< typename Derived::Scalar >, const Derived > expm1(const Eigen::ArrayBase< Derived > &x)
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_exp_op< typename Derived::Scalar >, const Derived > exp(const Eigen::ArrayBase< Derived > &x)
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_rsqrt_op< typename Derived::Scalar >, const Derived > rsqrt(const Eigen::ArrayBase< Derived > &x)
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_log1p_op< typename Derived::Scalar >, const Derived > log1p(const Eigen::ArrayBase< Derived > &x)
const Eigen::CwiseUnaryOp< Eigen::internal::scalar_log_op< typename Derived::Scalar >, const Derived > log(const Eigen::ArrayBase< Derived > &x)