1#ifndef STAN_MATH_OPENCL_PRIM_RAYLEIGH_LPDF_HPP
2#define STAN_MATH_OPENCL_PRIM_RAYLEIGH_LPDF_HPP
28 bool propto,
typename T_y_cl,
typename T_scale_cl,
29 require_all_prim_or_rev_kernel_expression_t<T_y_cl, T_scale_cl>* =
nullptr,
30 require_any_not_stan_scalar_t<T_y_cl, T_scale_cl>* =
nullptr>
32 const T_scale_cl& sigma) {
33 static constexpr const char* function =
"rayleigh_lpdf(OpenCL)";
50 const auto& sigma_val =
value_of(sigma_col);
55 =
check_cl(function,
"Random variable", y_val,
"positive");
56 auto y_positive = y_val > 0;
57 auto check_sigma_positive
58 =
check_cl(function,
"Scale parameter", sigma_val,
"positive");
59 auto sigma_positive = sigma_val > 0;
62 auto y_over_sigma =
elt_divide(y_val, sigma_val);
64 auto logp1 = -0.5 *
elt_multiply(y_over_sigma, y_over_sigma);
65 auto logp2 = static_select<include_summand<propto, T_scale_cl>::value>(
66 logp1 - 2.0 *
log(sigma_val), logp1);
69 logp2 +
log(y_val), logp2));
71 auto scaled_diff =
elt_multiply(inv_sigma, y_over_sigma);
72 auto y_deriv_expr =
elt_divide(1.0, y_val) - scaled_diff;
74 =
elt_multiply(y_over_sigma, scaled_diff) - 2.0 * inv_sigma;
80 results(check_y_positive, check_sigma_positive, logp_cl, y_deriv_cl,
82 =
expressions(y_positive, sigma_positive, logp_expr,
89 partials<0>(ops_partials) = std::move(y_deriv_cl);
92 partials<1>(ops_partials) = std::move(sigma_deriv_cl);
95 return ops_partials.build(logp);
Represents an arithmetic matrix on the OpenCL device.
elt_multiply_< as_operation_cl_t< T_a >, as_operation_cl_t< T_b > > elt_multiply(T_a &&a, T_b &&b)
auto check_cl(const char *function, const char *var_name, T &&y, const char *must_be)
Constructs a check on opencl matrix or expression.
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)
calc_if_< true, as_operation_cl_t< T > > calc_if(T &&a)
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_scale_cl > rayleigh_lpdf(const T_y_cl &y, const T_scale_cl &sigma)
The log of an Rayleigh density for y with the specified scale parameter.
auto from_matrix_cl(const T &src)
Copies the source matrix that is stored on the OpenCL device to the destination Eigen matrix.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
T value_of(const fvar< T > &v)
Return the value of the specified variable.
fvar< T > log(const fvar< T > &x)
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.
auto sum(const std::vector< T > &m)
Return the sum of the entries of the specified standard vector.
int64_t max_size(const T1 &x1, const Ts &... xs)
Calculate the size of the largest input.
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 ...
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...