Automatic Differentiation
 
Loading...
Searching...
No Matches
bernoulli_lcdf.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_PROB_BERNOULLI_LCDF_HPP
2#define STAN_MATH_PRIM_PROB_BERNOULLI_LCDF_HPP
3
11
12namespace stan {
13namespace math {
14
27template <typename T_n, typename T_prob,
29 T_n, T_prob>* = nullptr>
30return_type_t<T_prob> bernoulli_lcdf(const T_n& n, const T_prob& theta) {
31 using T_theta_ref = ref_type_t<T_prob>;
32 static constexpr const char* function = "bernoulli_lcdf";
33 check_consistent_sizes(function, "Random variable", n,
34 "Probability parameter", theta);
35 T_theta_ref theta_ref = theta;
36 const auto& n_arr = as_value_column_array_or_scalar(n);
37 const auto& theta_arr = as_value_column_array_or_scalar(theta_ref);
38 check_bounded(function, "Probability parameter", theta_arr, 0.0, 1.0);
39
40 if (size_zero(n, theta)) {
41 return 0.0;
42 }
43
44 auto ops_partials = make_partials_propagator(theta_ref);
45
46 // Explicit return for extreme values
47 // The gradients are technically ill-defined, but treated as zero
48 if (any(n_arr < 0)) {
49 return ops_partials.build(NEGATIVE_INFTY);
50 }
51
52 const auto& log1m_theta = select(theta_arr == 1, 0.0, log1m(theta_arr));
53
55 partials<0>(ops_partials) = select(n_arr == 0, -exp(-log1m_theta), 0.0);
56 }
57
58 return ops_partials.build(sum(select(n_arr == 0, log1m_theta, 0.0)));
59}
60
61} // namespace math
62} // namespace stan
63#endif
require_all_not_t< is_nonscalar_prim_or_rev_kernel_expression< std::decay_t< Types > >... > require_all_not_nonscalar_prim_or_rev_kernel_expression_t
Require none of the types satisfy is_nonscalar_prim_or_rev_kernel_expression.
select_< as_operation_cl_t< T_condition >, as_operation_cl_t< T_then >, as_operation_cl_t< T_else > > select(T_condition &&condition, T_then &&then, T_else &&els)
Selection operation on kernel generator expressions.
Definition select.hpp:148
return_type_t< T_prob_cl > bernoulli_lcdf(const T_n_cl &n, const T_prob_cl &theta)
Returns the log CDF of the Bernoulli distribution.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
bool size_zero(const T &x)
Returns 1 if input is of length 0, returns 0 otherwise.
Definition size_zero.hpp:19
void check_bounded(const char *function, const char *name, const T_y &y, const T_low &low, const T_high &high)
Check if the value is between the low and high values, inclusively.
constexpr bool any(T x)
Return true if any values in the input are true.
Definition any.hpp:21
static constexpr double NEGATIVE_INFTY
Negative infinity.
Definition constants.hpp:51
auto as_value_column_array_or_scalar(T &&a)
Extract the value from an object and for eigen vectors and std::vectors convert to an eigen column ar...
void check_consistent_sizes(const char *)
Trivial no input case, this function is a no-op.
fvar< T > sum(const std::vector< fvar< T > > &m)
Return the sum of the entries of the specified standard vector.
Definition sum.hpp:22
fvar< T > log1m(const fvar< T > &x)
Definition log1m.hpp:12
auto make_partials_propagator(Ops &&... ops)
Construct an partials_propagator.
fvar< T > exp(const fvar< T > &x)
Definition exp.hpp:13
typename ref_type_if< true, T >::type ref_type_t
Definition ref_type.hpp:55
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9
Extends std::true_type when instantiated with zero or more template parameters, all of which extend t...