Automatic Differentiation
 
Loading...
Searching...
No Matches
weibull_lpdf.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_OPENCL_PRIM_WEIBULL_LPDF_HPP
2#define STAN_MATH_OPENCL_PRIM_WEIBULL_LPDF_HPP
3#ifdef STAN_OPENCL
4
12
13namespace stan {
14namespace math {
15
30template <
31 bool propto, typename T_y_cl, typename T_shape_cl, typename T_scale_cl,
33 T_scale_cl>* = nullptr,
34 require_any_not_stan_scalar_t<T_y_cl, T_shape_cl, T_scale_cl>* = nullptr>
36 const T_y_cl& y, const T_shape_cl& alpha, const T_scale_cl& sigma) {
37 static constexpr const char* function = "weibull_lpdf(OpenCL)";
39 using std::isfinite;
40 using std::isnan;
41
42 check_consistent_sizes(function, "Random variable", y, "Shape parameter",
43 alpha, "Scale parameter", sigma);
44 const size_t N = max_size(y, alpha, sigma);
45 if (N == 0) {
46 return 0.0;
47 }
49 return 0.0;
50 }
51
52 const auto& y_col = as_column_vector_or_scalar(y);
53 const auto& alpha_col = as_column_vector_or_scalar(alpha);
54 const auto& sigma_col = as_column_vector_or_scalar(sigma);
55
56 const auto& y_val = value_of(y_col);
57 const auto& alpha_val = value_of(alpha_col);
58 const auto& sigma_val = value_of(sigma_col);
59
60 auto check_y_finite = check_cl(function, "Random variable", y_val, "finite");
61 auto y_finite = isfinite(y_val);
62 auto check_alpha_positive_finite
63 = check_cl(function, "Shape parameter", alpha_val, "positive finite");
64 auto alpha_positive_finite = isfinite(alpha_val) && 0 < alpha_val;
65 auto check_sigma_positive_finite
66 = check_cl(function, "Scale parameter", sigma_val, "positive finite");
67 auto sigma_positive_finite = isfinite(sigma_val) && 0 < sigma_val;
68
69 auto any_y_negative = colwise_max(cast<char>(y_val < 0));
70 auto log_y = log(y_val);
71 auto log_sigma = log(sigma_val);
72 auto inv_sigma = elt_divide(1., sigma_val);
73 auto y_div_sigma_pow_alpha = pow(elt_multiply(y_val, inv_sigma), alpha_val);
74
75 auto logp1 = -y_div_sigma_pow_alpha;
76 auto logp2 = static_select<include_summand<propto, T_shape_cl>::value>(
77 logp1 + log(alpha_val), logp1);
78 auto logp3
79 = static_select<include_summand<propto, T_y_cl, T_shape_cl>::value>(
80 logp2 + elt_multiply(alpha_val - 1.0, log_y), logp2);
81 auto logp_expr = colwise_sum(
83 logp3 - elt_multiply(alpha_val, log_sigma), logp3));
84
85 auto one_m_y_div_sigma_pow_alpha = 1.0 - y_div_sigma_pow_alpha;
86 auto y_deriv = elt_divide(
87 elt_multiply(alpha_val, one_m_y_div_sigma_pow_alpha) - 1.0, y_val);
88 auto alpha_deriv
89 = elt_divide(1.0, alpha_val)
90 + elt_multiply(one_m_y_div_sigma_pow_alpha, log_y - log_sigma);
91 auto sigma_deriv = elt_multiply(elt_multiply(alpha_val, inv_sigma),
92 -one_m_y_div_sigma_pow_alpha);
93
94 matrix_cl<char> any_y_negative_cl;
95 matrix_cl<double> logp_cl;
96 matrix_cl<double> alpha_deriv_cl;
97 matrix_cl<double> y_deriv_cl;
98 matrix_cl<double> sigma_deriv_cl;
99
100 results(check_y_finite, check_alpha_positive_finite,
101 check_sigma_positive_finite, any_y_negative_cl, logp_cl, y_deriv_cl,
102 alpha_deriv_cl, sigma_deriv_cl)
103 = expressions(y_finite, alpha_positive_finite, sigma_positive_finite,
104 any_y_negative, logp_expr,
108
109 if (from_matrix_cl(any_y_negative_cl).any()) {
110 return LOG_ZERO;
111 }
112
113 T_partials_return logp = sum(from_matrix_cl(logp_cl));
114
115 auto ops_partials = make_partials_propagator(y_col, alpha_col, sigma_col);
116
118 partials<0>(ops_partials) = std::move(y_deriv_cl);
119 }
121 partials<1>(ops_partials) = std::move(alpha_deriv_cl);
122 }
124 partials<2>(ops_partials) = std::move(sigma_deriv_cl);
125 }
126 return ops_partials.build(logp);
127}
128
129} // namespace math
130} // namespace stan
131#endif
132#endif
Represents an arithmetic matrix on the OpenCL device.
Definition matrix_cl.hpp:47
elt_multiply_< as_operation_cl_t< T_a >, as_operation_cl_t< T_b > > elt_multiply(T_a &&a, T_b &&b)
isfinite_< as_operation_cl_t< T > > isfinite(T &&a)
auto check_cl(const char *function, const char *var_name, T &&y, const char *must_be)
Constructs a check on opencl matrix or expression.
Definition check_cl.hpp:219
results_cl< T_results... > results(T_results &&... results)
Deduces types for constructing results_cl object.
auto as_column_vector_or_scalar(T &&a)
as_column_vector_or_scalar of a kernel generator expression.
elt_divide_< as_operation_cl_t< T_a >, as_operation_cl_t< T_b > > elt_divide(T_a &&a, T_b &&b)
auto colwise_max(T &&a)
Column wise max - reduction of a kernel generator expression.
calc_if_< true, as_operation_cl_t< T > > calc_if(T &&a)
Definition calc_if.hpp:121
auto colwise_sum(T &&a)
Column wise sum - reduction of a kernel generator expression.
expressions_cl< T_expressions... > expressions(T_expressions &&... expressions)
Deduces types for constructing expressions_cl object.
return_type_t< T_y_cl, T_shape_cl, T_scale_cl > weibull_lpdf(const T_y_cl &y, const T_shape_cl &alpha, const T_scale_cl &sigma)
Returns the Weibull log probability density for the given location and scale.
auto from_matrix_cl(const T &src)
Copies the source matrix that is stored on the OpenCL device to the destination Eigen matrix.
Definition copy.hpp:61
require_all_t< is_prim_or_rev_kernel_expression< std::decay_t< Types > >... > require_all_prim_or_rev_kernel_expression_t
Require type satisfies is_prim_or_rev_kernel_expression.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
static constexpr double LOG_ZERO
The natural logarithm of 0, .
Definition constants.hpp:68
size_t max_size(const T1 &x1, const Ts &... xs)
Calculate the size of the largest input.
Definition max_size.hpp:19
constexpr bool any(T x)
Return true if any values in the input are true.
Definition any.hpp:21
T value_of(const fvar< T > &v)
Return the value of the specified variable.
Definition value_of.hpp:18
fvar< T > log(const fvar< T > &x)
Definition log.hpp:15
T1 static_select(T1 &&a, T2 &&b)
Returns one of the arguments that can be of different type, depending on the compile time condition.
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 > pow(const fvar< T > &x1, const fvar< T > &x2)
Definition pow.hpp:19
auto make_partials_propagator(Ops &&... ops)
Construct an partials_propagator.
typename partials_return_type< Args... >::type partials_return_t
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9
bool isnan(const stan::math::var &a)
Checks if the given number is NaN.
Definition std_isnan.hpp:18
Metaprogramming struct to detect whether a given type is constant in the mathematical sense (not the ...
Template metaprogram to calculate whether a summand needs to be included in a proportional (log) prob...