1#ifndef STAN_MATH_OPENCL_PRIM_APPEND_ARRAY_HPP
2#define STAN_MATH_OPENCL_PRIM_APPEND_ARRAY_HPP
22 typename T_x,
typename T_y,
23 require_all_nonscalar_prim_or_rev_kernel_expression_t<T_x, T_y>* =
nullptr>
25 return append_row(std::forward<T_x>(x), std::forward<T_y>(y));
auto append_row(Ta &&a, Tb &&b)
Stack the rows of the first argument on top of the second argument.
auto append_array(T_x &&x, T_y &&y)
Return the concatenation of two specified vectors in the order of the arguments.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...