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
inv_Phi.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_REV_FUN_INV_PHI_HPP
2#define STAN_MATH_REV_FUN_INV_PHI_HPP
3
10#include <cmath>
11
12namespace stan {
13namespace math {
14
23inline var inv_Phi(const var& p) {
24 double val = inv_Phi(p.val());
25 return make_callback_var(val, [p, val](auto& vi) mutable {
26 p.adj() += vi.adj() * exp(-std_normal_lpdf(val));
27 });
28}
29
37template <typename T, require_var_matrix_t<T>* = nullptr>
38inline auto inv_Phi(const T& p) {
39 auto arena_rtn = to_arena(inv_Phi(p.val()));
40 return make_callback_var(arena_rtn, [p, arena_rtn](auto& vi) mutable {
41 auto deriv
42 = arena_rtn.unaryExpr([](auto x) { return exp(-std_normal_lpdf(x)); });
43 p.adj() += elt_multiply(vi.adj(), deriv);
44 });
45}
46
47} // namespace math
48} // namespace stan
49#endif
elt_multiply_< as_operation_cl_t< T_a >, as_operation_cl_t< T_b > > elt_multiply(T_a &&a, T_b &&b)
return_type_t< T_y_cl > std_normal_lpdf(const T_y_cl &y)
The log of the normal density for the specified scalar(s) given a location of 0 and a scale of 1.
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...
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
fvar< T > inv_Phi(const fvar< T > &p)
Definition inv_Phi.hpp:16
fvar< T > exp(const fvar< T > &x)
Definition exp.hpp:15
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...