Automatic Differentiation
 
Loading...
Searching...
No Matches
log1p_exp.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_FUN_LOG1P_EXP_HPP
2#define STAN_MATH_PRIM_FUN_LOG1P_EXP_HPP
3
9#include <cmath>
10
11namespace stan {
12namespace math {
13
45inline double log1p_exp(double a) {
46 using std::exp;
47 // like log_sum_exp below with b=0.0; prevents underflow
48 if (a > 0.0) {
49 return a + log1p(exp(-a));
50 }
51 return log1p(exp(a));
52}
53
62 template <typename T>
63 static inline auto fun(const T& x) {
64 return log1p_exp(x);
65 }
66};
67
75template <typename T,
78inline auto log1p_exp(const T& x) {
80}
81
82} // namespace math
83} // namespace stan
84
85#endif
require_not_t< is_nonscalar_prim_or_rev_kernel_expression< std::decay_t< T > > > require_not_nonscalar_prim_or_rev_kernel_expression_t
Require type does not satisfy is_nonscalar_prim_or_rev_kernel_expression.
require_not_t< is_var_matrix< std::decay_t< T > > > require_not_var_matrix_t
Require type does not satisfy is_var_matrix.
fvar< T > log1p_exp(const fvar< T > &x)
Definition log1p_exp.hpp:13
fvar< T > log1p(const fvar< T > &x)
Definition log1p.hpp:12
fvar< T > exp(const fvar< T > &x)
Definition exp.hpp:13
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9
Base template class for vectorization of unary scalar functions defined by a template class F to a sc...
static auto fun(const T &x)
Definition log1p_exp.hpp:63
Structure to wrap log1p_exp() so that it can be vectorized.
Definition log1p_exp.hpp:61