Loading [MathJax]/extensions/TeX/AMSsymbols.js
Automatic Differentiation
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
hypergeometric_pFq.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_REV_FUN_HYPERGEOMETRIC_PFQ_HPP
2#define STAN_MATH_REV_FUN_HYPERGEOMETRIC_PFQ_HPP
3
9
10namespace stan {
11namespace math {
12
25template <typename Ta, typename Tb, typename Tz,
26 bool grad_a = !is_constant<Ta>::value,
27 bool grad_b = !is_constant<Tb>::value,
28 bool grad_z = !is_constant<Tz>::value,
29 require_all_vector_t<Ta, Tb>* = nullptr,
30 require_return_type_t<is_var, Ta, Tb, Tz>* = nullptr>
31inline var hypergeometric_pFq(Ta&& a, Tb&& b, Tz&& z) {
32 auto&& arena_a = to_arena(as_column_vector_or_scalar(std::forward<Ta>(a)));
33 auto&& arena_b = to_arena(as_column_vector_or_scalar(std::forward<Tb>(b)));
34 auto pfq_val = hypergeometric_pFq(arena_a.val(), arena_b.val(), value_of(z));
35 return make_callback_var(
36 pfq_val, [arena_a, arena_b, z, pfq_val](auto& vi) mutable {
37 auto grad_tuple = grad_pFq<grad_a, grad_b, grad_z>(
38 pfq_val, arena_a.val(), arena_b.val(), value_of(z));
39 if constexpr (grad_a) {
40 arena_a.adj() += vi.adj() * std::get<0>(grad_tuple);
41 }
42 if constexpr (grad_b) {
43 arena_b.adj() += vi.adj() * std::get<1>(grad_tuple);
44 }
45 if constexpr (grad_z) {
46 z.adj() += vi.adj() * std::get<2>(grad_tuple);
47 }
48 });
49}
50} // namespace math
51} // namespace stan
52#endif
auto as_column_vector_or_scalar(T &&a)
as_column_vector_or_scalar of a kernel generator expression.
var_value< plain_type_t< T > > make_callback_var(T &&value, F &&functor)
Creates a new var initialized with a callback_vari with a given value and reverse-pass callback funct...
T value_of(const fvar< T > &v)
Return the value of the specified variable.
Definition value_of.hpp:18
arena_t< T > to_arena(const T &a)
Converts given argument into a type that either has any dynamic allocation on AD stack or schedules i...
Definition to_arena.hpp:25
FvarT hypergeometric_pFq(Ta &&a, Tb &&b, Tz &&z)
Returns the generalized hypergeometric (pFq) function applied to the input arguments.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...