Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/opencl/matrix_cl_view.hpp>
#include <stan/math/opencl/err/check_opencl.hpp>
#include <stan/math/prim/meta.hpp>
#include <stan/math/opencl/kernel_generator/type_str.hpp>
#include <stan/math/opencl/kernel_generator/name_generator.hpp>
#include <stan/math/opencl/kernel_generator/operation_cl.hpp>
#include <stan/math/opencl/kernel_generator/scalar.hpp>
#include <stan/math/opencl/kernel_generator/as_operation_cl.hpp>
#include <stan/math/opencl/kernel_generator/common_return_scalar.hpp>
#include <algorithm>
#include <string>
#include <tuple>
#include <type_traits>
#include <map>
#include <utility>
Go to the source code of this file.
Classes | |
class | stan::math::append_row_< T_a, T_b > |
Represents appending of rows in kernel generator expressions. More... | |
class | stan::math::append_col_< T_a, T_b > |
Represents appending of cols in kernel generator expressions. More... | |
Namespaces | |
namespace | stan |
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
namespace | stan::math |
Matrices and templated mathematical functions. | |
Functions | |
template<typename Ta , typename Tb , typename = require_all_kernel_expressions_and_none_scalar_t<Ta, Tb>> | |
auto | stan::math::append_row (Ta &&a, Tb &&b) |
Stack the rows of the first argument on top of the second argument. | |
template<typename Ta , typename Tb , typename = require_all_kernel_expressions_and_none_scalar_t<Ta, Tb>> | |
auto | stan::math::append_col (Ta &&a, Tb &&b) |
Stack the cols of the arguments. | |