Search Results

Documentation
template<typename keyT, typename output_terminalsT, typename derivedT, typename input_valueTs, ttg::ExecutionSpace Space>
class ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >
CRTP base for MADNESS-based TT classes
Public Types | |
using ttT = TT | |
using key_type = keyT | |
using input_terminals_type = ttg::detail::input_terminals_tuple_t< keyT, input_tuple_type > | |
using input_edges_type = ttg::detail::edges_tuple_t< keyT, ttg::meta::decayed_typelist_t< input_tuple_type > > | |
using input_values_full_tuple_type = ttg::meta::void_to_Void_tuple_t< ttg::meta::decayed_typelist_t< actual_input_tuple_type > > | |
using input_refs_full_tuple_type = ttg::meta::add_glvalue_reference_tuple_t< ttg::meta::void_to_Void_tuple_t< actual_input_tuple_type > > | |
using input_args_type = actual_input_tuple_type | |
using input_values_tuple_type = ttg::meta::drop_void_t< ttg::meta::decayed_typelist_t< input_tuple_type > > | |
using input_refs_tuple_type = ttg::meta::drop_void_t< ttg::meta::add_glvalue_reference_tuple_t< input_tuple_type > > | |
using output_terminals_type = output_terminalsT | |
using output_edges_type = typename ttg::terminals_to_edges< output_terminalsT >::type | |
Public Member Functions | |
ttg::World get_world () const override final | |
template<std::size_t i, bool key_is_void = ttg::meta::is_void_v<keyT>> | |
std::enable_if_t< key_is_void, void > set_argstream_size (std::size_t size) | |
template<std::size_t i> | |
void set_static_argstream_size (std::size_t size) | |
template<std::size_t i, typename Key = keyT, bool key_is_void = ttg::meta::is_void_v<Key>> | |
std::enable_if_t<!key_is_void, void > set_argstream_size (const Key &key, std::size_t size) | |
template<std::size_t i, typename Key = keyT, bool key_is_void = ttg::meta::is_void_v<Key>> | |
std::enable_if_t<!key_is_void, void > finalize_argstream (const Key &key) | |
finalizes stream for input i More... | |
template<std::size_t i, bool key_is_void = ttg::meta::is_void_v<keyT>> | |
std::enable_if_t< key_is_void, void > finalize_argstream () | |
finalizes stream for input i More... | |
template<typename keymapT = ttg::detail::default_keymap<keyT>, typename priomapT = ttg::detail::default_priomap<keyT>> | |
TT (const std::string &name, const std::vector< std::string > &innames, const std::vector< std::string > &outnames, ttg::World world, keymapT &&keymap_=keymapT(), priomapT &&priomap_=priomapT()) | |
template<typename keymapT = ttg::detail::default_keymap<keyT>, typename priomapT = ttg::detail::default_priomap<keyT>> | |
TT (const std::string &name, const std::vector< std::string > &innames, const std::vector< std::string > &outnames, keymapT &&keymap=keymapT(ttg::default_execution_context()), priomapT &&priomap=priomapT()) | |
template<typename keymapT = ttg::detail::default_keymap<keyT>, typename priomapT = ttg::detail::default_priomap<keyT>> | |
TT (const input_edges_type &inedges, const output_edges_type &outedges, const std::string &name, const std::vector< std::string > &innames, const std::vector< std::string > &outnames, ttg::World world, keymapT &&keymap_=keymapT(), priomapT &&priomap_=priomapT()) | |
template<typename keymapT = ttg::detail::default_keymap<keyT>, typename priomapT = ttg::detail::default_priomap<keyT>> | |
TT (const input_edges_type &inedges, const output_edges_type &outedges, const std::string &name, const std::vector< std::string > &innames, const std::vector< std::string > &outnames, keymapT &&keymap=keymapT(ttg::default_execution_context()), priomapT &&priomap=priomapT()) | |
virtual ~TT () | |
template<std::size_t i, typename Reducer > | |
void set_input_reducer (Reducer &&reducer) | |
template<std::size_t i, typename Reducer > | |
void set_input_reducer (Reducer &&reducer, std::size_t size) | |
template<typename Keymap > | |
void set_keymap (Keymap &&km) | |
auto get_priomap (void) const | |
template<typename Priomap > | |
void set_priomap (Priomap &&pm) | |
template<typename Constraint > | |
void add_constraint (Constraint &&c) | |
template<typename Constraint , typename Mapper > | |
void add_constraint (std::shared_ptr< Constraint > c, Mapper &&map) | |
template<typename Constraint , typename Mapper > | |
void add_constraint (Constraint c, Mapper &&map) | |
void make_executable () override | |
implementation of TTBase::make_executable() More... | |
void fence () override | |
Waits for the entire TTG associated with this TT to be completed (collective) More... | |
template<std::size_t i> | |
std::tuple_element_t< i, input_terminals_type > * in () | |
Returns pointer to input terminal i to facilitate connection — terminal cannot be copied, moved or assigned. More... | |
template<std::size_t i> | |
std::tuple_element_t< i, output_terminalsT > * out () | |
Returns pointer to output terminal for purpose of connection — terminal cannot be copied, moved or assigned. More... | |
template<typename Key = keyT> | |
std::enable_if_t<!ttg::meta::is_void_v< Key > &&!ttg::meta::is_empty_tuple_v< input_values_tuple_type >, void > invoke (const Key &key, const input_values_tuple_type &args) | |
Manual injection of a task with all input arguments specified as a tuple. More... | |
template<typename Key = keyT> | |
std::enable_if_t< ttg::meta::is_void_v< Key > &&!ttg::meta::is_empty_tuple_v< input_values_tuple_type >, void > invoke (const input_values_tuple_type &args) | |
Manual injection of a key-free task with all input arguments specified as a tuple. More... | |
template<typename Key = keyT> | |
std::enable_if_t<!ttg::meta::is_void_v< Key > &&ttg::meta::is_empty_tuple_v< input_values_tuple_type >, void > invoke (const Key &key) | |
Manual injection of a task that has no arguments. More... | |
template<typename Key = keyT> | |
std::enable_if_t< ttg::meta::is_void_v< Key > &&ttg::meta::is_empty_tuple_v< input_values_tuple_type >, void > invoke () | |
Manual injection of a task that has no key or arguments. More... | |
void invoke () override | |
void set_defer_writer (bool _) | |
bool get_defer_writer (bool _) | |
decltype(keymap) const & get_keymap () const | |
template<typename Key > | |
std::enable_if_t<!ttg::meta::is_void_v< Key >, int > owner (const Key &key) const | |
template<typename Key > | |
std::enable_if_t< ttg::meta::is_void_v< Key >, int > owner () const | |
![]() | |
virtual ~TTBase ()=default | |
bool set_trace_instance (bool value) | |
bool tracing () const | |
template<typename T , typename... Ts> | |
void trace (const T &t, const Ts &...ts) | |
Like ttg::trace(), but only produces tracing output if this->tracing()==true More... | |
bool set_lazy_pull_instance (bool value) | |
bool is_lazy_pull () | |
std::optional< std::reference_wrapper< const TTBase > > ttg () const | |
const TTBase * ttg_ptr () const | |
bool is_ttg () const | |
void set_name (const std::string &name) | |
Sets the name of this operation. More... | |
const std::string & get_name () const | |
Gets the name of this operation. More... | |
std::string get_class_name () const | |
Gets the demangled class name (uses RTTI) More... | |
const std::vector< TerminalBase * > & get_inputs () const | |
Returns the vector of input terminals. More... | |
const std::vector< TerminalBase * > & get_outputs () const | |
Returns the vector of output terminals. More... | |
ttg::TerminalBase * in (size_t i) | |
Returns a pointer to the i'th input terminal. More... | |
ttg::TerminalBase * out (size_t i) | |
Returns a pointer to the i'th output terminal. More... | |
template<std::size_t i> | |
ttg::TerminalBase * in () | |
Returns a pointer to the i'th input terminal ... to make API consistent with TT. More... | |
template<std::size_t i> | |
ttg::TerminalBase * out () | |
Returns a pointer to the i'th output terminal ... to make API consistent with TT. More... | |
auto get_instance_id () const | |
virtual void release () | |
bool is_executable () const | |
Static Public Member Functions | |
static constexpr bool derived_has_cuda_op () | |
static constexpr bool derived_has_hip_op () | |
static constexpr bool derived_has_level_zero_op () | |
static constexpr bool derived_has_device_op () | |
![]() | |
static bool set_trace_all (bool value) | |
static bool set_lazy_pull (bool value) | |
static const std::vector< TerminalBase * > * get_outputs_tls_ptr () | |
Returns this thread's pointer to the vector of output terminals. More... | |
Protected Types | |
using worldobjT = ::madness::WorldObject< ttT > | |
Protected Member Functions | |
const auto & get_output_terminals () const | |
template<typename terminalT , std::size_t i, typename Key > | |
void invoke_pull_terminal (terminalT &in, const Key &key, TTArgs *args) | |
template<std::size_t i, typename Key > | |
void get_terminal_data (const int owner, const Key &key) | |
template<std::size_t... IS, typename Key = keyT> | |
void invoke_pull_terminals (std::index_sequence< IS... >, const Key &key, TTArgs *args) | |
template<std::size_t i, typename Key , typename Value > | |
void set_arg (const Key &key, Value &&value) | |
template<std::size_t i, typename Key , typename Value > | |
std::enable_if_t<!ttg::meta::is_void_v< Key > &&std::is_void_v< Value >, void > set_arg (const Key &key) | |
template<std::size_t i, typename Key = keyT, typename Value > | |
std::enable_if_t< ttg::meta::is_void_v< Key > &&!std::is_void_v< std::decay_t< Value > >, void > set_arg (Value &&value) | |
template<std::size_t i, typename Key = keyT, typename Value > | |
std::enable_if_t< ttg::meta::is_void_v< Key > &&std::is_void_v< Value >, void > set_arg () | |
template<typename Key , typename... Ts, size_t... Is, size_t... Js> | |
std::enable_if_t<!ttg::meta::is_void_v< Key >, void > set_args (std::index_sequence< Is... >, std::index_sequence< Js... >, const Key &key, const std::tuple< Ts... > &args) | |
template<typename Key , typename... Ts, size_t... Is> | |
std::enable_if_t<!ttg::meta::is_void_v< Key >, void > set_args (std::index_sequence< Is... > is, const Key &key, const std::tuple< Ts... > &args) | |
template<typename Key = keyT, typename... Ts, size_t... Is, size_t... Js> | |
std::enable_if_t< ttg::meta::is_void_v< Key >, void > set_args (std::index_sequence< Is... >, std::index_sequence< Js... >, const std::tuple< Ts... > &args) | |
template<typename Key = keyT, typename... Ts, size_t... Is> | |
std::enable_if_t< ttg::meta::is_void_v< Key >, void > set_args (std::index_sequence< Is... > is, const std::tuple< Ts... > &args) | |
![]() | |
void set_input (size_t i, TerminalBase *t) | |
void set_output (size_t i, TerminalBase *t) | |
template<bool out, typename terminalT , std::size_t i, typename setfuncT > | |
void register_terminal (terminalT &term, const std::string &name, const setfuncT setfunc) | |
template<bool out, std::size_t... IS, typename terminalsT , typename namesT , typename setfuncT > | |
void register_terminals (std::index_sequence< IS... >, terminalsT &terms, const namesT &names, const setfuncT setfunc) | |
template<typename terminalsT , typename namesT > | |
void register_input_terminals (terminalsT &terms, const namesT &names) | |
template<typename terminalsT , typename namesT > | |
void register_output_terminals (terminalsT &terms, const namesT &names) | |
template<std::size_t... IS, typename terminalsT , typename setfuncT > | |
void set_terminals (std::index_sequence< IS... >, terminalsT &terms, const setfuncT setfunc) | |
template<typename terminalsT , typename setfuncT > | |
void set_terminals (const terminalsT &terms, const setfuncT setfunc) | |
TTBase (TTBase &&other) | |
TTBase & operator= (TTBase &&other) | |
TTBase (const std::string &name, size_t numins, size_t numouts) | |
void set_outputs_tls_ptr () | |
void set_outputs_tls_ptr (const std::vector< TerminalBase * > *ptr) | |
Static Protected Member Functions | |
template<std::size_t i, typename resultT , typename InTuple > | |
static resultT get (InTuple &&intuple) | |
template<std::size_t i, typename InTuple > | |
static auto & get (InTuple &&intuple) | |
![]() | |
static const std::vector< TerminalBase * > *& outputs_tls_ptr_accessor () | |
Static Protected Attributes | |
static constexpr int numinedges = std::tuple_size_v<input_tuple_type> | |
static constexpr int numins = std::tuple_size_v<actual_input_tuple_type> | |
static constexpr int numouts = std::tuple_size_v<output_terminalsT> | |
struct { | |
uint64_t key_hash = 0 | |
size_t call_depth = 0 | |
} threaddata | |
Member Typedef Documentation
◆ input_args_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_args_type = actual_input_tuple_type |
◆ input_edges_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_edges_type = ttg::detail::edges_tuple_t<keyT, ttg::meta::decayed_typelist_t<input_tuple_type> > |
◆ input_refs_full_tuple_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_refs_full_tuple_type = ttg::meta::add_glvalue_reference_tuple_t<ttg::meta::void_to_Void_tuple_t<actual_input_tuple_type> > |
◆ input_refs_tuple_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_refs_tuple_type = ttg::meta::drop_void_t<ttg::meta::add_glvalue_reference_tuple_t<input_tuple_type> > |
◆ input_terminals_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_terminals_type = ttg::detail::input_terminals_tuple_t<keyT, input_tuple_type> |
◆ input_values_full_tuple_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_values_full_tuple_type = ttg::meta::void_to_Void_tuple_t<ttg::meta::decayed_typelist_t<actual_input_tuple_type> > |
◆ input_values_tuple_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::input_values_tuple_type = ttg::meta::drop_void_t<ttg::meta::decayed_typelist_t<input_tuple_type> > |
◆ key_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::key_type = keyT |
◆ output_edges_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::output_edges_type = typename ttg::terminals_to_edges<output_terminalsT>::type |
◆ output_terminals_type
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::output_terminals_type = output_terminalsT |
◆ ttT
using ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::ttT = TT |
◆ worldobjT
|
protected |
Constructor & Destructor Documentation
◆ TT() [1/4]
|
inline |
◆ TT() [2/4]
|
inline |
◆ TT() [3/4]
|
inline |
◆ TT() [4/4]
|
inline |
◆ ~TT()
|
inlinevirtual |
Member Function Documentation
◆ add_constraint() [1/3]
|
inline |
◆ add_constraint() [2/3]
|
inline |
◆ add_constraint() [3/3]
|
inline |
◆ derived_has_cuda_op()
|
inlinestaticconstexpr |
◆ derived_has_device_op()
|
inlinestaticconstexpr |
◆ derived_has_hip_op()
|
inlinestaticconstexpr |
◆ derived_has_level_zero_op()
|
inlinestaticconstexpr |
◆ fence()
|
inlineoverridevirtual |
Waits for the entire TTG associated with this TT to be completed (collective)
This is a collective operation and must be invoked by the main thread on all processes. In the MADNESS implementation it fences the entire world associated with the TTG. If you wish to fence TTGs independently, then give each its own world.
Implements ttg::TTBase.
◆ finalize_argstream() [1/2]
|
inline |
◆ finalize_argstream() [2/2]
|
inline |
◆ get() [1/2]
|
inlinestaticprotected |
◆ get() [2/2]
|
inlinestaticprotected |
◆ get_defer_writer()
|
inline |
◆ get_keymap()
|
inline |
◆ get_output_terminals()
|
inlineprotected |
◆ get_priomap()
|
inline |
◆ get_terminal_data()
|
inlineprotected |
◆ get_world()
|
inlinefinaloverridevirtual |
◆ in()
|
inline |
◆ invoke() [1/5]
|
inlinevirtual |
Manual injection of a task that has no key or arguments.
Reimplemented from ttg::TTBase.
◆ invoke() [2/5]
|
inlineoverridevirtual |
Use this to create a task that takes no data "manually"
- Warning
- calls ttg::abort() if the derived class TT did not override this; only makes sense to override this if the derived TT uses void for key or data
Reimplemented from ttg::TTBase.
◆ invoke() [3/5]
|
inline |
◆ invoke() [4/5]
|
inline |
◆ invoke() [5/5]
|
inline |
◆ invoke_pull_terminal()
|
inlineprotected |
◆ invoke_pull_terminals()
|
inlineprotected |
◆ make_executable()
|
inlineoverridevirtual |
implementation of TTBase::make_executable()
Implements ttg::TTBase.
◆ out()
|
inline |
◆ owner() [1/2]
|
inline |
◆ owner() [2/2]
|
inline |
◆ set_arg() [1/4]
|
inlineprotected |
◆ set_arg() [2/4]
|
inlineprotected |
◆ set_arg() [3/4]
|
inlineprotected |
◆ set_arg() [4/4]
|
inlineprotected |
◆ set_args() [1/4]
|
inlineprotected |
◆ set_args() [2/4]
|
inlineprotected |
◆ set_args() [3/4]
|
inlineprotected |
◆ set_args() [4/4]
|
inlineprotected |
◆ set_argstream_size() [1/2]
|
inline |
◆ set_argstream_size() [2/2]
|
inline |
◆ set_defer_writer()
|
inline |
◆ set_input_reducer() [1/2]
|
inline |
define the reducer function to be called when additional inputs are received on a streaming terminal
- Template Parameters
-
<i> the index of the input terminal that is used as a streaming terminal
- Parameters
-
[in] reducer a function of prototype void(input_type<i> &a, const input_type<i> &b)
that function should aggregate b into a
◆ set_input_reducer() [2/2]
|
inline |
define the reducer function to be called when additional inputs are received on a streaming terminal
- Template Parameters
-
<i> the index of the input terminal that is used as a streaming terminal
- Parameters
-
[in] reducer a function of prototype void(input_type<i> &a, const input_type<i> &b)
that function should aggregate b into a[in] size the default number of inputs that are received in this streaming terminal, for each task
◆ set_keymap()
|
inline |
◆ set_priomap()
|
inline |
◆ set_static_argstream_size()
|
inline |
Member Data Documentation
◆ call_depth
size_t ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::call_depth = 0 |
◆ key_hash
uint64_t ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::key_hash = 0 |
◆ numinedges
|
staticconstexprprotected |
◆ numins
|
staticconstexprprotected |
◆ numouts
|
staticconstexprprotected |
◆
__thread { ... } ttg_madness::TT< keyT, output_terminalsT, derivedT, input_valueTs, Space >::threaddata |
The documentation for this class was generated from the following files: