Automatic Differentiation
 
Loading...
Searching...
No Matches
fmod.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_OPENCL_REV_fmod_HPP
2#define STAN_MATH_OPENCL_REV_fmod_HPP
3#ifdef STAN_OPENCL
4
15
16namespace stan {
17namespace math {
18
62template <typename T_a, typename T_b,
63 require_all_prim_or_rev_kernel_expression_t<T_a, T_b>* = nullptr,
64 require_any_var_t<T_a, T_b>* = nullptr,
65 require_any_not_stan_scalar_t<T_a, T_b>* = nullptr>
66inline var_value<matrix_cl<double>> fmod(T_a&& a, T_b&& b) {
67 using std::isnan;
68 const arena_t<T_a>& a_arena = std::forward<T_a>(a);
69 const arena_t<T_b>& b_arena = std::forward<T_b>(b);
70
71 matrix_cl<double> res_val = fmod(value_of(a_arena), value_of(b_arena));
72
73 return make_callback_var(
74 res_val,
75 [a_arena, b_arena](const vari_value<matrix_cl<double>>& res) mutable {
76 auto any_nan = isnan(value_of(a_arena)) || isnan(value_of(b_arena));
77 auto a_is_max = value_of(a_arena) > value_of(b_arena);
78 auto a_deriv = select(any_nan, NOT_A_NUMBER, res.adj());
79 auto b_deriv = select(
80 any_nan, NOT_A_NUMBER,
81 elt_multiply(-res.adj(), trunc(elt_divide(value_of(a_arena),
82 value_of(b_arena)))));
83
84 adjoint_results(a_arena, b_arena) += expressions(a_deriv, b_deriv);
85 });
86}
87
88} // namespace math
89} // namespace stan
90
91#endif
92#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)
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
elt_divide_< as_operation_cl_t< T_a >, as_operation_cl_t< T_b > > elt_divide(T_a &&a, T_b &&b)
expressions_cl< T_expressions... > expressions(T_expressions &&... expressions)
Deduces types for constructing expressions_cl object.
static constexpr double NOT_A_NUMBER
(Quiet) not-a-number value.
Definition constants.hpp:56
adjoint_results_cl< T_results... > adjoint_results(T_results &&... results)
Deduces types for constructing adjoint_results_cl object.
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
fvar< T > fmod(const fvar< T > &x1, const fvar< T > &x2)
Definition fmod.hpp:15
fvar< T > trunc(const fvar< T > &x)
Return the nearest integral value that is not larger in magnitude than the specified argument.
Definition trunc.hpp:20
typename internal::arena_type_impl< std::decay_t< T > >::type arena_t
Determines a type that can be used in place of T that does any dynamic allocations on the AD stack.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
bool isnan(const stan::math::var &a)
Checks if the given number is NaN.
Definition std_isnan.hpp:18