1#ifndef STAN_MATH_OPENCL_REV_APPEND_COL_HPP
2#define STAN_MATH_OPENCL_REV_APPEND_COL_HPP
38template <
typename T_a,
typename T_b,
39 require_all_prim_or_rev_kernel_expression_t<T_a, T_b>* =
nullptr,
40 require_any_var_t<T_a, T_b>* =
nullptr,
41 require_any_not_stan_scalar_t<T_a, T_b>* =
nullptr>
51 res.adj(), 0, 0, a_arena.rows(), a_arena.cols());
55 res.adj(), 0, a_arena.cols(), b_arena.rows(), b_arena.cols());
Represents an arithmetic matrix on the OpenCL device.
auto block_zero_based(T &&a, int start_row, int start_col, int rows, int cols)
Block of a kernel generator expression.
auto append_col(Ta &&a, Tb &&b)
Stack the cols of the arguments.
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...
auto & adjoint_of(const T &x)
Returns a reference to a variable's adjoint.
T value_of(const fvar< T > &v)
Return the value of the specified variable.
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 ...
Metaprogramming struct to detect whether a given type is constant in the mathematical sense (not the ...