Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
PTL::TaskGroup< Tp, Arg, MaxDepth > Class Template Reference

#include <TaskGroup.hh>

Public Types

template<typename Up>
using container_type = std::vector<Up>
 
using tid_type = std::thread::id
 
using size_type = uintmax_t
 
using lock_t = Mutex
 
using atomic_int = std::atomic_intmax_t
 
using atomic_uint = std::atomic_uintmax_t
 
using condition_t = Condition
 
using ArgTp = decay_t<Arg>
 
using result_type = Tp
 
using task_pointer = std::shared_ptr<TaskFuture<ArgTp>>
 
using task_list_t = container_type<task_pointer>
 
using this_type = TaskGroup<Tp, Arg, MaxDepth>
 
using promise_type = std::promise<ArgTp>
 
using future_type = std::future<ArgTp>
 
using packaged_task_type = std::packaged_task<ArgTp()>
 
using future_list_t = container_type<future_type>
 
using join_type = typename JoinFunction<Tp, Arg>::Type
 
using iterator = typename future_list_t::iterator
 
using reverse_iterator = typename future_list_t::reverse_iterator
 
using const_iterator = typename future_list_t::const_iterator
 
using const_reverse_iterator = typename future_list_t::const_reverse_iterator
 
template<typename... Args>
using task_type = Task<ArgTp, decay_t<Args>...>
 

Public Member Functions

template<typename Func>
 TaskGroup (Func &&_join, ThreadPool *_tp=internal::get_default_threadpool())
 
template<typename Up = Tp>
 TaskGroup (ThreadPool *_tp=internal::get_default_threadpool(), enable_if_t< std::is_void< Up >::value, int >=0)
 
 ~TaskGroup ()
 
 TaskGroup (const this_type &)=delete
 
 TaskGroup (this_type &&rhs)=default
 
TaskGroupoperator= (const this_type &rhs)=delete
 
TaskGroupoperator= (this_type &&rhs)=default
 
template<typename Up>
std::shared_ptr< Up > operator+= (std::shared_ptr< Up > &&_task)
 
void wait ()
 
intmax_t operator++ ()
 
intmax_t operator++ (int)
 
intmax_t operator-- ()
 
intmax_t operator-- (int)
 
intmax_t size () const
 
lock_ttask_lock ()
 
condition_ttask_cond ()
 
uintmax_t id () const
 
void set_pool (ThreadPool *tp)
 
ThreadPool *& pool ()
 
ThreadPoolpool () const
 
bool is_native_task_group () const
 
bool is_main () const
 
intmax_t pending ()
 
ScopeDestructor get_scope_destructor ()
 
void notify ()
 
void notify_all ()
 
void reserve (size_t _n)
 
template<typename Func, typename... Args>
std::shared_ptr< task_type< Args... > > wrap (Func func, Args... args)
 
template<typename Func, typename... Args, typename Up = Tp>
enable_if_t< std::is_void< Up >::value, void > exec (Func func, Args... args)
 
template<typename Func, typename... Args, typename Up = Tp>
enable_if_t<!std::is_void< Up >::value, void > exec (Func func, Args... args)
 
template<typename Func, typename... Args>
void run (Func func, Args... args)
 
future_list_tget_tasks ()
 
const future_list_tget_tasks () const
 
itr_t begin ()
 
itr_t end ()
 
citr_t begin () const
 
citr_t end () const
 
citr_t cbegin () const
 
citr_t cend () const
 
ritr_t rbegin ()
 
ritr_t rend ()
 
critr_t rbegin () const
 
critr_t rend () const
 
template<typename Up = Tp, enable_if_t<!std::is_void< Up >::value, int > = 0>
Up join (Up accum={})
 
template<typename Up = Tp, typename Rp = Arg, enable_if_t< std::is_void< Up >::value &&std::is_void< Rp >::value, int > = 0>
void join ()
 
template<typename Up = Tp, typename Rp = Arg, enable_if_t< std::is_void< Up >::value &&!std::is_void< Rp >::value, int > = 0>
void join ()
 
void clear ()
 

Static Public Member Functions

static void set_verbose (int level)
 

Protected Types

using itr_t = iterator
 
using citr_t = const_iterator
 
using ritr_t = reverse_iterator
 
using critr_t = const_reverse_iterator
 

Protected Member Functions

template<typename Up, typename Func, typename... Args>
enable_if_t< std::is_void< Up >::value, void > local_exec (Func func, Args... args)
 
template<typename Up, typename Func, typename... Args>
enable_if_t<!std::is_void< Up >::value, void > local_exec (Func func, Args... args)
 
atomic_inttask_count ()
 
const atomic_inttask_count () const
 

Static Protected Member Functions

static tid_type this_tid ()
 

Protected Attributes

uintmax_t m_id = internal::task_group_counter()++
 
intmax_t m_depth = internal::get_task_depth()
 
tid_type m_main_tid = std::this_thread::get_id()
 
atomic_int m_tot_task_count { 0 }
 
lock_t m_task_lock = {}
 
condition_t m_task_cond = {}
 
join_type m_join {}
 
ThreadPoolm_pool = internal::get_default_threadpool()
 
tbb_task_group_tm_tbb_task_group = nullptr
 
task_list_t m_task_list = {}
 
future_list_t m_future_list = {}
 

Static Protected Attributes

static int f_verbose
 

Detailed Description

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
class PTL::TaskGroup< Tp, Arg, MaxDepth >

Definition at line 83 of file TaskGroup.hh.

Member Typedef Documentation

◆ ArgTp

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::ArgTp = decay_t<Arg>

Definition at line 96 of file TaskGroup.hh.

◆ atomic_int

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::atomic_int = std::atomic_intmax_t

Definition at line 93 of file TaskGroup.hh.

◆ atomic_uint

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::atomic_uint = std::atomic_uintmax_t

Definition at line 94 of file TaskGroup.hh.

◆ citr_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::citr_t = const_iterator
protected

Definition at line 214 of file TaskGroup.hh.

◆ condition_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::condition_t = Condition

Definition at line 95 of file TaskGroup.hh.

◆ const_iterator

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::const_iterator = typename future_list_t::const_iterator

Definition at line 108 of file TaskGroup.hh.

◆ const_reverse_iterator

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::const_reverse_iterator = typename future_list_t::const_reverse_iterator

Definition at line 109 of file TaskGroup.hh.

◆ container_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
template<typename Up>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::container_type = std::vector<Up>

Definition at line 88 of file TaskGroup.hh.

◆ critr_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::critr_t = const_reverse_iterator
protected

Definition at line 216 of file TaskGroup.hh.

◆ future_list_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::future_list_t = container_type<future_type>

Definition at line 104 of file TaskGroup.hh.

◆ future_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::future_type = std::future<ArgTp>

Definition at line 102 of file TaskGroup.hh.

◆ iterator

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::iterator = typename future_list_t::iterator

Definition at line 106 of file TaskGroup.hh.

◆ itr_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::itr_t = iterator
protected

Definition at line 213 of file TaskGroup.hh.

◆ join_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::join_type = typename JoinFunction<Tp, Arg>::Type

Definition at line 105 of file TaskGroup.hh.

◆ lock_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::lock_t = Mutex

Definition at line 92 of file TaskGroup.hh.

◆ packaged_task_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::packaged_task_type = std::packaged_task<ArgTp()>

Definition at line 103 of file TaskGroup.hh.

◆ promise_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::promise_type = std::promise<ArgTp>

Definition at line 101 of file TaskGroup.hh.

◆ result_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::result_type = Tp

Definition at line 97 of file TaskGroup.hh.

◆ reverse_iterator

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::reverse_iterator = typename future_list_t::reverse_iterator

Definition at line 107 of file TaskGroup.hh.

◆ ritr_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::ritr_t = reverse_iterator
protected

Definition at line 215 of file TaskGroup.hh.

◆ size_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::size_type = uintmax_t

Definition at line 91 of file TaskGroup.hh.

◆ task_list_t

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::task_list_t = container_type<task_pointer>

Definition at line 99 of file TaskGroup.hh.

◆ task_pointer

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::task_pointer = std::shared_ptr<TaskFuture<ArgTp>>

Definition at line 98 of file TaskGroup.hh.

◆ task_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
template<typename... Args>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::task_type = Task<ArgTp, decay_t<Args>...>

Definition at line 112 of file TaskGroup.hh.

◆ this_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::this_type = TaskGroup<Tp, Arg, MaxDepth>

Definition at line 100 of file TaskGroup.hh.

◆ tid_type

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
using PTL::TaskGroup< Tp, Arg, MaxDepth >::tid_type = std::thread::id

Definition at line 90 of file TaskGroup.hh.

Constructor & Destructor Documentation

◆ TaskGroup() [1/4]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Func>
PTL::TaskGroup< Tp, Arg, MaxDepth >::TaskGroup ( Func && _join,
ThreadPool * _tp = internal::get_default_threadpool() )

Definition at line 291 of file TaskGroup.hh.

◆ TaskGroup() [2/4]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Up>
PTL::TaskGroup< Tp, Arg, MaxDepth >::TaskGroup ( ThreadPool * _tp = internal::get_default_threadpool(),
enable_if_t< std::is_void< Up >::value, int > = 0 )

Definition at line 300 of file TaskGroup.hh.

302: m_join{ []() {} }
303, m_pool{ _tp }
304{
306}

◆ ~TaskGroup()

template<typename Tp, typename Arg, intmax_t MaxDepth>
PTL::TaskGroup< Tp, Arg, MaxDepth >::~TaskGroup ( )

Definition at line 310 of file TaskGroup.hh.

311{
312 {
313 // task will decrement counter and then acquire the lock to notify
314 // condition variable so acquiring lock here will prevent the
315 // task group from being destroyed before this is completed
317 if(!_lk.owns_lock())
318 _lk.lock();
319 }
320
322 {
323 auto* _arena = m_pool->get_task_arena();
324 _arena->execute([this]() { this->m_tbb_task_group->wait(); });
325 }
326 delete m_tbb_task_group;
327 this->clear();
328}

Referenced by ~TaskGroup().

◆ TaskGroup() [3/4]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
PTL::TaskGroup< Tp, Arg, MaxDepth >::TaskGroup ( const this_type & )
delete

◆ TaskGroup() [4/4]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
PTL::TaskGroup< Tp, Arg, MaxDepth >::TaskGroup ( this_type && rhs)
default

Member Function Documentation

◆ begin() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
itr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::begin ( )
inline

Definition at line 228 of file TaskGroup.hh.

228{ return m_future_list.begin(); }

◆ begin() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
citr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::begin ( ) const
inline

Definition at line 230 of file TaskGroup.hh.

230{ return m_future_list.begin(); }

◆ cbegin()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
citr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::cbegin ( ) const
inline

Definition at line 232 of file TaskGroup.hh.

232{ return m_future_list.begin(); }

◆ cend()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
citr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::cend ( ) const
inline

Definition at line 233 of file TaskGroup.hh.

233{ return m_future_list.end(); }

◆ clear()

template<typename Tp, typename Arg, intmax_t MaxDepth>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::clear ( )

Definition at line 709 of file TaskGroup.hh.

710{
713}

Referenced by clear(), join(), join(), and ~TaskGroup().

◆ end() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
itr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::end ( )
inline

Definition at line 229 of file TaskGroup.hh.

229{ return m_future_list.end(); }

◆ end() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
citr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::end ( ) const
inline

Definition at line 231 of file TaskGroup.hh.

231{ return m_future_list.end(); }

◆ exec() [1/2]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Func, typename... Args, typename Up>
enable_if_t< std::is_void< Up >::value, void > PTL::TaskGroup< Tp, Arg, MaxDepth >::exec ( Func func,
Args... args )

Definition at line 532 of file TaskGroup.hh.

533{
536 {
538 }
539 else
540 {
542 auto& _task_cond = task_cond();
543 auto& _task_lock = task_lock();
544 auto _task = wrap([&_task_cond, &_task_lock, &_counter, func, args...]() {
545 auto* _tdata = ThreadData::GetInstance();
546 if(_tdata)
547 ++(_tdata->task_depth);
548 func(args...);
549 auto _count = --(_counter);
550 if(_tdata)
551 --(_tdata->task_depth);
552 if(_count < 1)
553 {
554 AutoLock _lk{ _task_lock };
555 _task_cond.notify_all();
556 }
557 });
558
560 {
561 auto* _arena = m_pool->get_task_arena();
563 auto* _ptask = _task.get();
564 _arena->execute([_tbb_task_group, _ptask]() {
565 _tbb_task_group->run([_ptask]() { (*_ptask)(); });
566 });
567 }
568 else
569 {
570 m_pool->add_task(std::move(_task));
571 }
572 }
573}
enable_if_t< std::is_void< Up >::value, void > local_exec(Func func, Args... args)
std::shared_ptr< task_type< Args... > > wrap(Func func, Args... args)
Definition TaskGroup.hh:187
void run(Func func, Args... args)
Definition TaskGroup.hh:200

Referenced by exec(), PTL::TaskManager::exec(), PTL::TaskManager::exec(), PTL::TaskManager::rexec(), PTL::TaskManager::rexec(), PTL::TaskManager::rexec(), PTL::TaskManager::rexec(), and run().

◆ exec() [2/2]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Func, typename... Args, typename Up>
enable_if_t<!std::is_void< Up >::value, void > PTL::TaskGroup< Tp, Arg, MaxDepth >::exec ( Func func,
Args... args )

Definition at line 577 of file TaskGroup.hh.

578{
581 {
583 }
584 else
585 {
587 auto& _task_cond = task_cond();
588 auto& _task_lock = task_lock();
589 auto _task = wrap([&_task_cond, &_task_lock, &_counter, func, args...]() {
590 auto* _tdata = ThreadData::GetInstance();
591 if(_tdata)
592 ++(_tdata->task_depth);
593 auto&& _ret = func(args...);
594 auto _count = --(_counter);
595 if(_tdata)
596 --(_tdata->task_depth);
597 if(_count < 1)
598 {
599 AutoLock _lk{ _task_lock };
600 _task_cond.notify_all();
601 }
602 return std::forward<decltype(_ret)>(_ret);
603 });
604
606 {
607 auto* _arena = m_pool->get_task_arena();
609 auto* _ptask = _task.get();
610 _arena->execute([_tbb_task_group, _ptask]() {
611 _tbb_task_group->run([_ptask]() { (*_ptask)(); });
612 });
613 }
614 else
615 {
616 m_pool->add_task(std::move(_task));
617 }
618 }
619}

◆ get_scope_destructor()

template<typename Tp, typename Arg, intmax_t MaxDepth>
ScopeDestructor PTL::TaskGroup< Tp, Arg, MaxDepth >::get_scope_destructor ( )

Definition at line 498 of file TaskGroup.hh.

499{
501 auto& _task_cond = task_cond();
502 auto& _task_lock = task_lock();
504 auto _count = --(_counter);
505 if(_count < 1)
506 {
509 }
510 } };
511}
void notify_all()
Definition TaskGroup.hh:523

Referenced by get_scope_destructor().

◆ get_tasks() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
future_list_t & PTL::TaskGroup< Tp, Arg, MaxDepth >::get_tasks ( )
inline

Definition at line 222 of file TaskGroup.hh.

222{ return m_future_list; }

◆ get_tasks() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
const future_list_t & PTL::TaskGroup< Tp, Arg, MaxDepth >::get_tasks ( ) const
inline

Definition at line 223 of file TaskGroup.hh.

223{ return m_future_list; }

◆ id()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
uintmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::id ( ) const
inline

Definition at line 159 of file TaskGroup.hh.

159{ return m_id; }

◆ is_main()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
bool PTL::TaskGroup< Tp, Arg, MaxDepth >::is_main ( ) const
inline

Definition at line 167 of file TaskGroup.hh.

167{ return this_tid() == m_main_tid; }

◆ is_native_task_group()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
bool PTL::TaskGroup< Tp, Arg, MaxDepth >::is_native_task_group ( ) const
inline

Definition at line 166 of file TaskGroup.hh.

166{ return (m_tbb_task_group) == nullptr; }

Referenced by wait(), and wrap().

◆ join() [1/3]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Up, typename Rp, enable_if_t< std::is_void< Up >::value &&!std::is_void< Rp >::value, int >>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::join ( )
inline

Definition at line 676 of file TaskGroup.hh.

677{
678 this->wait();
679 for(auto& itr : m_task_list)
680 itr->get();
681 for(auto& itr : m_future_list)
682 itr.get();
683 m_join();
684 this->clear();
685}

◆ join() [2/3]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
template<typename Up = Tp, typename Rp = Arg, enable_if_t< std::is_void< Up >::value &&!std::is_void< Rp >::value, int > = 0>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::join ( )
inline

◆ join() [3/3]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Up, enable_if_t<!std::is_void< Up >::value, int >>
Up PTL::TaskGroup< Tp, Arg, MaxDepth >::join ( Up accum = {})
inline

Definition at line 655 of file TaskGroup.hh.

656{
657 this->wait();
658 for(auto& itr : m_task_list)
659 {
660 using RetT = decay_t<decltype(itr->get())>;
662 }
663 for(auto& itr : m_future_list)
664 {
665 using RetT = decay_t<decltype(itr.get())>;
667 }
668 this->clear();
669 return accum;
670}

Referenced by join(), and join().

◆ local_exec() [1/2]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Up, typename Func, typename... Args>
enable_if_t< std::is_void< Up >::value, void > PTL::TaskGroup< Tp, Arg, MaxDepth >::local_exec ( Func func,
Args... args )
protected

Definition at line 624 of file TaskGroup.hh.

625{
627 if(_tdata)
628 ++(_tdata->task_depth);
630 m_future_list.emplace_back(_p.get_future());
631 func(args...);
632 _p.set_value();
633 if(_tdata)
634 --(_tdata->task_depth);
635}
static ThreadData *& GetInstance()
Definition ThreadData.cc:31

Referenced by exec(), and local_exec().

◆ local_exec() [2/2]

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Up, typename Func, typename... Args>
enable_if_t<!std::is_void< Up >::value, void > PTL::TaskGroup< Tp, Arg, MaxDepth >::local_exec ( Func func,
Args... args )
protected

Definition at line 640 of file TaskGroup.hh.

641{
643 if(_tdata)
644 ++(_tdata->task_depth);
646 m_future_list.emplace_back(_p.get_future());
647 _p.set_value(func(args...));
648 if(_tdata)
649 --(_tdata->task_depth);
650}

◆ notify()

template<typename Tp, typename Arg, intmax_t MaxDepth>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::notify ( )

Definition at line 515 of file TaskGroup.hh.

516{
518 m_task_cond.notify_one();
519}

Referenced by notify().

◆ notify_all()

template<typename Tp, typename Arg, intmax_t MaxDepth>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::notify_all ( )

Definition at line 523 of file TaskGroup.hh.

524{
527}

Referenced by notify_all().

◆ operator++() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::operator++ ( )
inline

Definition at line 146 of file TaskGroup.hh.

146{ return ++(m_tot_task_count); }

Referenced by operator+=().

◆ operator++() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::operator++ ( int )
inline

Definition at line 147 of file TaskGroup.hh.

147{ return (m_tot_task_count)++; }

◆ operator+=()

template<typename Tp, typename Arg, intmax_t MaxDepth>
template<typename Up>
std::shared_ptr< Up > PTL::TaskGroup< Tp, Arg, MaxDepth >::operator+= ( std::shared_ptr< Up > && _task)

Definition at line 333 of file TaskGroup.hh.

334{
335 // thread-safe increment of tasks in task group
336 operator++();
337 // copy the shared pointer to abstract instance
338 m_task_list.push_back(_task);
339 // return the derived instance
340 return std::move(_task);
341}

Referenced by operator+=(), and wrap().

◆ operator--() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::operator-- ( )
inline

Definition at line 148 of file TaskGroup.hh.

148{ return --(m_tot_task_count); }

◆ operator--() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::operator-- ( int )
inline

Definition at line 149 of file TaskGroup.hh.

149{ return (m_tot_task_count)--; }

◆ operator=() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
TaskGroup & PTL::TaskGroup< Tp, Arg, MaxDepth >::operator= ( const this_type & rhs)
delete

◆ operator=() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
TaskGroup & PTL::TaskGroup< Tp, Arg, MaxDepth >::operator= ( this_type && rhs)
default

◆ pending()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::pending ( )
inline

Definition at line 170 of file TaskGroup.hh.

170{ return m_tot_task_count.load(); }

Referenced by wait().

◆ pool() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
ThreadPool *& PTL::TaskGroup< Tp, Arg, MaxDepth >::pool ( )
inline

Definition at line 163 of file TaskGroup.hh.

163{ return m_pool; }

◆ pool() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
ThreadPool * PTL::TaskGroup< Tp, Arg, MaxDepth >::pool ( ) const
inline

Definition at line 164 of file TaskGroup.hh.

164{ return m_pool; }

◆ rbegin() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
ritr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::rbegin ( )
inline

Definition at line 234 of file TaskGroup.hh.

234{ return m_future_list.rbegin(); }
ritr_t rbegin()
Definition TaskGroup.hh:234

◆ rbegin() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
critr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::rbegin ( ) const
inline

Definition at line 236 of file TaskGroup.hh.

236{ return m_future_list.rbegin(); }

◆ rend() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
ritr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::rend ( )
inline

Definition at line 235 of file TaskGroup.hh.

235{ return m_future_list.rend(); }
ritr_t rend()
Definition TaskGroup.hh:235

◆ rend() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
critr_t PTL::TaskGroup< Tp, Arg, MaxDepth >::rend ( ) const
inline

Definition at line 237 of file TaskGroup.hh.

237{ return m_future_list.rend(); }

◆ reserve()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::reserve ( size_t _n)
inline

Definition at line 179 of file TaskGroup.hh.

180 {
183 }
void reserve(size_t _n)
Definition TaskGroup.hh:179

◆ run()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
template<typename Func, typename... Args>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::run ( Func func,
Args... args )
inline

Definition at line 200 of file TaskGroup.hh.

201 {
203 }
enable_if_t< std::is_void< Up >::value, void > exec(Func func, Args... args)

◆ set_pool()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::set_pool ( ThreadPool * tp)
inline

Definition at line 162 of file TaskGroup.hh.

162{ m_pool = tp; }

◆ set_verbose()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
static void PTL::TaskGroup< Tp, Arg, MaxDepth >::set_verbose ( int level)
inlinestatic

Definition at line 172 of file TaskGroup.hh.

172{ f_verbose = level; }

◆ size()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::size ( ) const
inline

Definition at line 152 of file TaskGroup.hh.

152{ return m_tot_task_count.load(); }

◆ task_cond()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
condition_t & PTL::TaskGroup< Tp, Arg, MaxDepth >::task_cond ( )
inline

Definition at line 156 of file TaskGroup.hh.

156{ return m_task_cond; }

Referenced by exec(), and get_scope_destructor().

◆ task_count() [1/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
atomic_int & PTL::TaskGroup< Tp, Arg, MaxDepth >::task_count ( )
inlineprotected

Definition at line 264 of file TaskGroup.hh.

264{ return m_tot_task_count; }

Referenced by wait().

◆ task_count() [2/2]

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
const atomic_int & PTL::TaskGroup< Tp, Arg, MaxDepth >::task_count ( ) const
inlineprotected

Definition at line 265 of file TaskGroup.hh.

265{ return m_tot_task_count; }

◆ task_lock()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
lock_t & PTL::TaskGroup< Tp, Arg, MaxDepth >::task_lock ( )
inline

Definition at line 155 of file TaskGroup.hh.

155{ return m_task_lock; }

Referenced by exec(), and get_scope_destructor().

◆ this_tid()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
static tid_type PTL::TaskGroup< Tp, Arg, MaxDepth >::this_tid ( )
inlinestaticprotected

Definition at line 260 of file TaskGroup.hh.

260{ return std::this_thread::get_id(); }

Referenced by is_main().

◆ wait()

template<typename Tp, typename Arg, intmax_t MaxDepth>
void PTL::TaskGroup< Tp, Arg, MaxDepth >::wait ( )

Definition at line 345 of file TaskGroup.hh.

346{
347 auto _dtor = ScopeDestructor{ [&]() {
349 {
350 auto* _arena = m_pool->get_task_arena();
351 _arena->execute([this]() { this->m_tbb_task_group->wait(); });
352 }
353 } };
354
356 if(!data)
357 return;
358
359 // if no pool was initially present at creation
360 if(!m_pool)
361 {
362 // check for master MT run-manager
364
365 // if no thread pool created
366 if(!m_pool)
367 {
368 if(f_verbose > 0)
369 {
370 fprintf(stderr, "%s @ %i :: Warning! nullptr to thread-pool (%p)\n",
371 __FUNCTION__, __LINE__, static_cast<void*>(m_pool));
372 std::cerr << __FUNCTION__ << "@" << __LINE__ << " :: Warning! "
373 << "nullptr to thread pool!" << std::endl;
374 }
375 return;
376 }
377 }
378
380 VUserTaskQueue* taskq = (tpool) ? tpool->get_queue() : data->current_queue;
381
382 bool _is_main = data->is_main;
383 bool _within_task = data->within_task;
384
385 auto is_active_state = [&]() {
386 return (tpool->state()->load(std::memory_order_relaxed) !=
388 };
389
390 auto execute_this_threads_tasks = [&]() {
391 if(!taskq)
392 return;
393
394 // only want to process if within a task
395 if((!_is_main || tpool->size() < 2) && _within_task)
396 {
397 int bin = static_cast<int>(taskq->GetThreadBin());
398 // const auto nitr = (tpool) ? tpool->size() :
399 // Thread::hardware_concurrency();
400 while(this->pending() > 0)
401 {
402 if(!taskq->empty())
403 {
404 auto _task = taskq->GetTask(bin);
405 if(_task)
406 (*_task)();
407 }
408 }
409 }
410 };
411
412 // checks for validity
414 {
415 // for external threads
416 if(!_is_main || tpool->size() < 2)
417 return;
418 }
419 else if(f_verbose > 0)
420 {
421 if(!tpool || !taskq)
422 {
423 // something is wrong, didn't create thread-pool?
425 "%s @ %i :: Warning! nullptr to thread data (%p) or task-queue "
426 "(%p)\n",
427 __FUNCTION__, __LINE__, static_cast<void*>(tpool),
428 static_cast<void*>(taskq));
429 }
430 // return if thread pool isn't built
431 else if(is_native_task_group() && !tpool->is_alive())
432 {
433 fprintf(stderr, "%s @ %i :: Warning! thread-pool is not alive!\n",
435 }
436 else if(!is_active_state())
437 {
438 fprintf(stderr, "%s @ %i :: Warning! thread-pool is not active!\n",
440 }
441 }
442
445
446 while(is_active_state())
447 {
449
450 // while loop protects against spurious wake-ups
451 while(_is_main && pending() > 0 && is_active_state())
452 {
453 // auto _wake = [&]() { return (wake_size > pending() ||
454 // !is_active_state());
455 // };
456
457 // lock before sleeping on condition
458 if(!_lock.owns_lock())
459 _lock.lock();
460
461 // Wait until signaled that a task has been competed
462 // Unlock mutex while wait, then lock it back when signaled
463 // when true, this wakes the thread
464 if(pending() >= wake_size)
465 {
467 }
468 else
469 {
471 }
472 // unlock
473 if(_lock.owns_lock())
474 _lock.unlock();
475 }
476
477 // if pending is not greater than zero, we are joined
478 if(pending() <= 0)
479 break;
480 }
481
482 if(_lock.owns_lock())
483 _lock.unlock();
484
485 intmax_t ntask = this->task_count().load();
486 if(ntask > 0)
487 {
489 ss << "\nWarning! Join operation issue! " << ntask << " tasks still "
490 << "are running!" << std::endl;
491 std::cerr << ss.str();
492 this->wait();
493 }
494}
intmax_t size() const
Definition TaskGroup.hh:152
bool is_main() const
Definition TaskGroup.hh:167
ThreadPool * get_default_threadpool()
Definition TaskGroup.cc:50

Referenced by join(), join(), and wait().

◆ wrap()

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
template<typename Func, typename... Args>
std::shared_ptr< task_type< Args... > > PTL::TaskGroup< Tp, Arg, MaxDepth >::wrap ( Func func,
Args... args )
inline

Definition at line 187 of file TaskGroup.hh.

188 {
191 }
std::shared_ptr< Up > operator+=(std::shared_ptr< Up > &&_task)

Referenced by exec(), PTL::TaskManager::wrap(), and PTL::TaskManager::wrap().

Member Data Documentation

◆ f_verbose

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
int PTL::TaskGroup< Tp, Arg, MaxDepth >::f_verbose
staticprotected

Definition at line 268 of file TaskGroup.hh.

Referenced by wait().

◆ m_depth

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
intmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::m_depth = internal::get_task_depth()
protected

Definition at line 271 of file TaskGroup.hh.

◆ m_future_list

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
future_list_t PTL::TaskGroup< Tp, Arg, MaxDepth >::m_future_list = {}
protected

Definition at line 280 of file TaskGroup.hh.

280{};

Referenced by clear(), join(), join(), and local_exec().

◆ m_id

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
uintmax_t PTL::TaskGroup< Tp, Arg, MaxDepth >::m_id = internal::task_group_counter()++
protected

Definition at line 270 of file TaskGroup.hh.

◆ m_join

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
join_type PTL::TaskGroup< Tp, Arg, MaxDepth >::m_join {}
protected

Definition at line 276 of file TaskGroup.hh.

276{};

Referenced by join(), join(), TaskGroup(), and TaskGroup().

◆ m_main_tid

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
tid_type PTL::TaskGroup< Tp, Arg, MaxDepth >::m_main_tid = std::this_thread::get_id()
protected

Definition at line 272 of file TaskGroup.hh.

◆ m_pool

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
ThreadPool* PTL::TaskGroup< Tp, Arg, MaxDepth >::m_pool = internal::get_default_threadpool()
protected

Definition at line 277 of file TaskGroup.hh.

Referenced by exec(), TaskGroup(), wait(), and ~TaskGroup().

◆ m_task_cond

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
condition_t PTL::TaskGroup< Tp, Arg, MaxDepth >::m_task_cond = {}
protected

Definition at line 275 of file TaskGroup.hh.

275{};

Referenced by notify(), notify_all(), and wait().

◆ m_task_list

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
task_list_t PTL::TaskGroup< Tp, Arg, MaxDepth >::m_task_list = {}
protected

Definition at line 279 of file TaskGroup.hh.

279{};

Referenced by clear(), join(), join(), and operator+=().

◆ m_task_lock

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
lock_t PTL::TaskGroup< Tp, Arg, MaxDepth >::m_task_lock = {}
protected

Definition at line 274 of file TaskGroup.hh.

274{};

Referenced by notify(), notify_all(), wait(), and ~TaskGroup().

◆ m_tbb_task_group

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
tbb_task_group_t* PTL::TaskGroup< Tp, Arg, MaxDepth >::m_tbb_task_group = nullptr
protected

Definition at line 278 of file TaskGroup.hh.

Referenced by exec(), wait(), and ~TaskGroup().

◆ m_tot_task_count

template<typename Tp, typename Arg = Tp, intmax_t MaxDepth = 0>
atomic_int PTL::TaskGroup< Tp, Arg, MaxDepth >::m_tot_task_count { 0 }
protected

Definition at line 273 of file TaskGroup.hh.

273{ 0 };

Referenced by exec(), and get_scope_destructor().


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