MADNESS
0.10.1
|
A no-operation task used for various purposes. More...
#include <thread.h>
Public Member Functions | |
virtual | ~PoolTaskNull () |
Destructor. More... | |
void | run (const TaskThreadEnv &) |
Execution function that does nothing. More... | |
Public Member Functions inherited from madness::PoolTaskInterface | |
PoolTaskInterface () | |
Default constructor. More... | |
PoolTaskInterface (const TaskAttributes &attr) | |
virtual | ~PoolTaskInterface ()=default |
Destructor. More... | |
void | execute () |
void | set_nthread (int nthread) |
Call this to reset the number of threads before the task is submitted. More... | |
Public Member Functions inherited from madness::TaskAttributes | |
TaskAttributes (const TaskAttributes &attr) | |
Copy constructor. More... | |
TaskAttributes (unsigned long flags=0) | |
Sets the attributes to the desired values. More... | |
virtual | ~TaskAttributes () |
int | get_nthread () const |
Get the number of threads. More... | |
bool | is_generator () const |
Test if the generator attribute is true. More... | |
bool | is_high_priority () const |
Test if the high priority attribute is true. More... | |
bool | is_stealable () const |
Test if the stealable attribute is true. More... | |
template<typename Archive > | |
void | serialize (Archive &ar) |
Serializes the attributes for I/O. More... | |
TaskAttributes & | set_generator (bool generator_hint) |
Sets the generator attribute. More... | |
TaskAttributes & | set_highpriority (bool hipri) |
Sets the high priority attribute. More... | |
void | set_nthread (int nthread) |
Set the number of threads. More... | |
TaskAttributes & | set_stealable (bool stealable) |
Sets the stealable attribute. More... | |
Private Member Functions | |
virtual void | get_id (std::pair< void *, unsigned short > &id) const |
Additional Inherited Members | |
Static Public Member Functions inherited from madness::TaskAttributes | |
static TaskAttributes | generator () |
static TaskAttributes | hipri () |
static TaskAttributes | multi_threaded (int nthread) |
Static Public Attributes inherited from madness::TaskAttributes | |
static const unsigned long | GENERATOR = 1ul<<8 |
Mask for generator bit. More... | |
static const unsigned long | HIGHPRIORITY = GENERATOR<<2 |
Mask for priority bit. More... | |
static const unsigned long | NTHREAD = 0xff |
Mask for nthread byte. More... | |
static const unsigned long | STEALABLE = GENERATOR<<1 |
Mask for stealable bit. More... | |
Static Protected Member Functions inherited from madness::PoolTaskInterface | |
template<typename fnobjT > | |
static std::enable_if<!(detail::function_traits< fnobjT >::value||detail::memfunc_traits< fnobjT >::value) >::type | make_id (std::pair< void *, unsigned short > &id, const fnobjT &) |
template<typename fnT > | |
static std::enable_if< detail::function_traits< fnT >::value||detail::memfunc_traits< fnT >::value >::type | make_id (std::pair< void *, unsigned short > &id, fnT fn) |
A no-operation task used for various purposes.
|
inlinevirtual |
Destructor.
|
inlineprivatevirtual |
[in,out] | id | Description needed. |
Reimplemented from madness::PoolTaskInterface.
References madness::PoolTaskInterface::make_id(), and run().
|
inlinevirtual |
Execution function that does nothing.
Implements madness::PoolTaskInterface.
Referenced by get_id().