Automatic Differentiation
 
Loading...
Searching...
No Matches
stan::math::select_< T_condition, T_then, T_else > Class Template Reference

Detailed Description

template<typename T_condition, typename T_then, typename T_else>
class stan::math::select_< T_condition, T_then, T_else >

Represents a selection operation in kernel generator expressions.

This is element wise ternary operator condition ? then : els, also equivalent to Eigen's .select().

Template Parameters
Derivedderived type
T_conditiontype of condition
T_thentype of then expression
T_elsetype of else expression

Definition at line 36 of file select.hpp.

#include <select.hpp>

+ Inheritance diagram for stan::math::select_< T_condition, T_then, T_else >:

Public Types

using Scalar = common_scalar_t< T_then, T_else >
 
using base = operation_cl< select_< T_condition, T_then, T_else >, Scalar, T_condition, T_then, T_else >
 
using Deriv = select_< T_condition, T_then, T_else >
 
using ArgsTuple = std::tuple< Args... >
 
using view_transitivity = std::tuple< std::is_same< Args, void >... >
 

Public Member Functions

 select_ (T_condition &&condition, T_then &&then, T_else &&els)
 Constructor.
 
auto deep_copy () const
 Creates a deep copy of this expression.
 
kernel_parts generate (const std::string &row_index_name, const std::string &col_index_name, const bool view_handled, const std::string &var_name_condition, const std::string &var_name_then, const std::string &var_name_else) const
 Generates kernel code for this (select) operation.
 
std::pair< int, int > extreme_diagonals () const
 Determine indices of extreme sub- and superdiagonals written.
 
select_< T_condition, T_then, T_else > & derived ()
 Casts the instance into its derived type.
 
const select_< T_condition, T_then, T_else > & derived () const
 Casts the instance into its derived type.
 
const auto & get_arg () const
 Returns an argument to this operation.
 
matrix_cl< common_scalar_t< T_then, T_else > > eval () const
 Evaluates the expression.
 
void evaluate_into (T_lhs &lhs) const
 Evaluates this expression into given left-hand-side expression.
 
std::string get_kernel_source_for_evaluating_into (const T_lhs &lhs) const
 Generates kernel source for evaluating this expression into given left-hand-side expression.
 
kernel_parts get_whole_kernel_parts (std::unordered_map< const void *, const char * > &generated, std::unordered_map< const void *, const char * > &generated_all, name_generator &ng, const std::string &row_index_name, const std::string &col_index_name, const T_result &result) const
 Generates kernel code for assigning this expression into result expression.
 
kernel_parts get_kernel_parts (std::unordered_map< const void *, const char * > &generated, std::unordered_map< const void *, const char * > &generated_all, name_generator &name_gen, const std::string &row_index_name, const std::string &col_index_name, bool view_handled) const
 Generates kernel code for this and nested expressions.
 
kernel_parts generate (const std::string &row_index_name, const std::string &col_index_name, const bool view_handled, const std::string &var_name_arg) const
 Generates kernel code for this expression.
 
void modify_argument_indices (std::string &row_index_name, std::string &col_index_name) const
 Does nothing.
 
void set_args (std::unordered_map< const void *, const char * > &generated, std::unordered_map< const void *, const char * > &generated_all, cl::Kernel &kernel, int &arg_num) const
 Sets kernel arguments for nested expressions.
 
void add_read_event (cl::Event &e) const
 Adds read event to any matrices used by nested expressions.
 
void get_write_events (std::vector< cl::Event > &events) const
 Adds all write events on any matrices used by nested expressions to a list.
 
int rows () const
 Number of rows of a matrix that would be the result of evaluating this expression.
 
int cols () const
 Number of columns of a matrix that would be the result of evaluating this expression.
 
int size () const
 Size of a matrix that would be the result of evaluating this expression.
 
int thread_rows () const
 Number of rows threads need to be launched for.
 
int thread_cols () const
 Number of columns threads need to be launched for.
 
matrix_cl_view view () const
 View of a matrix that would be the result of evaluating this expression.
 
void get_unique_matrix_accesses (std::vector< int > &uids, std::unordered_map< const void *, int > &id_map, int &next_id) const
 Collects data that is needed beside types to uniqly identify a kernel generator expression.
 

Public Attributes

std::string var_name_
 

Static Public Attributes

static const bool require_specific_local_size
 
static constexpr int N
 
static constexpr int dynamic
 

Protected Attributes

std::tuple< Args... > arguments_
 

The documentation for this class was generated from the following file: