#include <SerialTaskQueueChain.h>
|
template<typename T > |
void | actionToRun (const T &iAction) |
|
template<typename T > |
void | passDownChain (unsigned int iIndex, const T &iAction) |
|
Definition at line 31 of file SerialTaskQueueChain.h.
edm::SerialTaskQueueChain::SerialTaskQueueChain |
( |
| ) |
|
|
inline |
edm::SerialTaskQueueChain::SerialTaskQueueChain |
( |
std::vector< std::shared_ptr< SerialTaskQueue >> |
iQueues | ) |
|
|
inlineexplicit |
Definition at line 41 of file SerialTaskQueueChain.h.
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
std::atomic< unsigned long > m_outstandingTasks
template<typename T >
void SerialTaskQueueChain::actionToRun |
( |
const T & |
iAction | ) |
|
|
private |
Definition at line 148 of file SerialTaskQueueChain.h.
Referenced by passDownChain(), and push().
150 using Queues= std::vector<std::shared_ptr<SerialTaskQueue>>;
152 auto& vec = iChain->m_queues;
153 for(
auto it = vec.rbegin()+1; it != vec.rend(); ++it) {
156 --(iChain->m_outstandingTasks);
159 std::unique_ptr<SerialTaskQueueChain,decltype(sentryAction)> sentry(
this, sentryAction);
std::size_t edm::SerialTaskQueueChain::numberOfQueues |
( |
| ) |
const |
|
inline |
unsigned long edm::SerialTaskQueueChain::outstandingTasks |
( |
| ) |
const |
|
inline |
template<typename T >
void SerialTaskQueueChain::passDownChain |
( |
unsigned int |
iIndex, |
|
|
const T & |
iAction |
|
) |
| |
|
private |
Definition at line 132 of file SerialTaskQueueChain.h.
References actionToRun(), and m_queues.
Referenced by push().
137 if(iQueueIndex +1 ==
m_queues.size()) {
140 auto nextQueue = iQueueIndex+1;
141 m_queues[iQueueIndex]->push([
this, nextQueue, iAction]() {
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
void actionToRun(const T &iAction)
void passDownChain(unsigned int iIndex, const T &iAction)
template<typename T >
void SerialTaskQueueChain::push |
( |
const T & |
iAction | ) |
|
template<typename T >
void SerialTaskQueueChain::pushAndWait |
( |
const T & |
iAction | ) |
|
synchronously pushes functor iAction into queue
The function will wait until iAction has completed before returning. If another task is already running on the queue, the system is allowed to find another TBB task to execute while waiting for the iAction to finish. In that way the core is not idled while waiting.
- Parameters
-
[in] | iAction | Must be a functor that takes no arguments and return no values. |
Definition at line 104 of file SerialTaskQueueChain.h.
References TauDecayModes::dec, pyrootRender::destroy(), and push().
Referenced by operator=().
107 std::unique_ptr<tbb::task, decltype(destry)> waitTask(
new (tbb::task::allocate_root()) tbb::empty_task, destry );
108 waitTask->set_ref_count(3);
110 std::exception_ptr ptr;
111 auto waitTaskPtr = waitTask.get();
112 push([waitTaskPtr, iAction,&ptr](){
114 auto dec = [](tbb::task* iTask){ iTask->decrement_ref_count();};
115 std::unique_ptr<tbb::task, decltype(dec)> sentry(waitTaskPtr,
dec);
119 ptr = std::current_exception();
123 waitTask->decrement_ref_count();
124 waitTask->wait_for_all();
127 std::rethrow_exception(ptr);
void push(const T &iAction)
asynchronously pushes functor iAction into queue
std::atomic<unsigned long> edm::SerialTaskQueueChain::m_outstandingTasks {0} |
|
private |
std::vector<std::shared_ptr<SerialTaskQueue> > edm::SerialTaskQueueChain::m_queues |
|
private |