Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
PTL Namespace Reference

Backports of C++ language features for use with C++11 compilers. More...

Namespaces

namespace  impl
 Provision of tuple expansion to arguments.
 
namespace  internal
 
namespace  tbb
 
namespace  thread_pool
 
namespace  Threading
 

Classes

struct  JoinFunction
 
struct  JoinFunction< void, JoinArg >
 
struct  JoinFunction< void, void >
 
class  PackagedTask
 The task class is supplied to thread_pool. More...
 
struct  ScopeDestructor
 
class  Task
 The task class is supplied to thread_pool. More...
 
class  Task< RetT, void >
 The task class is supplied to thread_pool. More...
 
class  Task< void, void >
 The task class is supplied to thread_pool.
 
class  TaskFuture
 The task class is supplied to thread_pool. More...
 
class  TaskGroup
 
class  TaskManager
 
class  TaskRunManager
 
class  TaskSubQueue
 
class  TemplateAutoLock
 
class  ThreadData
 
class  ThreadPool
 
class  UserTaskQueue
 
class  VTask
 VTask is the abstract class stored in thread_pool. More...
 
class  VUserTaskQueue
 

Typedefs

using AutoLock = TemplateAutoLock<Mutex>
 
using RecursiveAutoLock = TemplateAutoLock<RecursiveMutex>
 
template<typename T>
using decay_t = typename std::decay<T>::type
 
template<bool B, typename T = void>
using enable_if_t = typename std::enable_if<B, T>::type
 
using tbb_global_control_t = tbb::global_control
 
using tbb_task_group_t = tbb::task_group
 
using tbb_task_arena_t = tbb::task_arena
 

Functions

template<typename... Args>
void ConsumeParameters (Args &&...)
 
template<typename Tp>
Tp GetEnv (const std::string &env_id, Tp _default=Tp())
 
template<>
bool GetEnv (const std::string &env_id, bool _default)
 
Pid_t GetPidId ()
 
unsigned GetNumberOfPhysicalCpus ()
 
unsigned GetNumberOfCores ()
 
int GetThreadId ()
 
void SetThreadId (int aNewValue)
 
bool SetPinAffinity (int idx)
 
bool SetThreadPriority (int _v)
 
bool SetPinAffinity (int idx, NativeThread &_t)
 
bool SetThreadPriority (int _v, NativeThread &_t)
 

Variables

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

Detailed Description

Backports of C++ language features for use with C++11 compilers.

Class Description:

This class provides a mechanism to create a mutex and locks/unlocks it. Can be used by applications to implement in a portable way a mutexing logic. Usage Example:

 #include "Threading.hh"
 #include "AutoLock.hh"

 /// defined somewhere -- static so all threads see the same mutex
 static Mutex aMutex;

 /// somewhere else:
 /// The AutoLock instance will automatically unlock the mutex when it
 /// goes out of scope. One typically defines the scope within { } if
 /// there is thread-safe code following the auto-lock

 {
     AutoLock l(&aMutex);
     ProtectedCode();
 }

 UnprotectedCode();

 /// When ProtectedCode() is calling a function that also tries to lock
 /// a normal AutoLock + Mutex will "deadlock". In other words, the
 /// the mutex in the ProtectedCode() function will wait forever to
 /// acquire the lock that is being held by the function that called
 /// ProtectedCode(). In this situation, use a RecursiveAutoLock +
 /// RecursiveMutex, e.g.

 /// defined somewhere -- static so all threads see the same mutex
 static RecursiveMutex aRecursiveMutex;

 /// this function is sometimes called directly and sometimes called
 /// from SomeFunction_B(), which also locks the mutex
 void SomeFunction_A()
 {
     /// when called from SomeFunction_B(), a Mutex + AutoLock will
     /// deadlock
     RecursiveAutoLock l(&aRecursiveMutex);
     /// do something
 }

 void SomeFunction_B()
 {

     {
         RecursiveAutoLock l(&aRecursiveMutex);
         SomeFunction_A();
     }

     UnprotectedCode();
 }

Author: Andrea Dotti (15 Feb 2013): First Implementation

Update: Jonathan Madsen (9 Feb 2018): Replaced custom implementation with inheritance from C++11 unique_lock, which inherits the following member functions:

  • unique_lock(unique_lock&& other) noexcept;
  • explicit unique_lock(mutex_type& m);
  • unique_lock(mutex_type& m, std::defer_lock_t t) noexcept;
  • unique_lock(mutex_type& m, std::try_to_lock_t t);
  • unique_lock(mutex_type& m, std::adopt_lock_t t);
  • template <typename Rep, typename Period> unique_lock(mutex_type& m, const std::chrono::duration<Rep,Period>& timeout_duration);
  • template<typename Clock, typename Duration> unique_lock(mutex_type& m, const std::chrono::time_point<Clock,Duration>& timeout_time);
  • void lock();
  • void unlock();
  • bool try_lock();
  • template <typename Rep, typename Period> bool try_lock_for(const std::chrono::duration<Rep,Period>&);
  • template <typename Rep, typename Period> bool try_lock_until(const std::chrono::time_point<Clock,Duration>&);
  • void swap(unique_lock& other) noexcept;
  • mutex_type* release() noexcept;
  • mutex_type* mutex() const noexcept;
  • bool owns_lock() const noexcept;
  • explicit operator bool() const noexcept;
  • unique_lock& operator=(unique_lock&& other);

Note that AutoLock is defined also for a sequential Tasking build but below regarding implementation (also found in Threading.hh)

     NOTE ON Tasking SERIAL BUILDS AND MUTEX/UNIQUE_LOCK
     ==================================================

Mutex and RecursiveMutex are always C++11 std::mutex types however, in serial mode, using MUTEXLOCK and MUTEXUNLOCK on these types has no effect – i.e. the mutexes are not actually locked or unlocked

Additionally, when a Mutex or RecursiveMutex is used with AutoLock and RecursiveAutoLock, respectively, these classes also suppressing the locking and unlocking of the mutex. Regardless of the build type, AutoLock and RecursiveAutoLock inherit from std::unique_lock<std::mutex> and std::unique_lock<std::recursive_mutex>, respectively. This means that in situations (such as is needed by the analysis category), the AutoLock and RecursiveAutoLock can be passed to functions requesting a std::unique_lock. Within these functions, since std::unique_lock member functions are not virtual, they will not retain the dummy locking and unlocking behavior --> An example of this behavior can be found below

Jonathan R. Madsen (February 21, 2018)

Typedef Documentation

◆ AutoLock

Definition at line 479 of file AutoLock.hh.

◆ decay_t

template<typename T>
using PTL::decay_t = typename std::decay<T>::type

Definition at line 35 of file CxxBackports.hh.

◆ enable_if_t

template<bool B, typename T = void>
using PTL::enable_if_t = typename std::enable_if<B, T>::type

Definition at line 38 of file CxxBackports.hh.

◆ RecursiveAutoLock

using PTL::RecursiveAutoLock = TemplateAutoLock<RecursiveMutex>

Definition at line 480 of file AutoLock.hh.

◆ tbb_global_control_t

Definition at line 123 of file ThreadData.hh.

◆ tbb_task_arena_t

Definition at line 125 of file ThreadData.hh.

◆ tbb_task_group_t

Definition at line 124 of file ThreadData.hh.

Function Documentation

◆ ConsumeParameters()

template<typename... Args>
void PTL::ConsumeParameters ( Args && ...)

Definition at line 29 of file ConsumeParameters.hh.

30{}

Referenced by SetPinAffinity(), SetPinAffinity(), SetThreadPriority(), and SetThreadPriority().

◆ GetEnv() [1/2]

template<>
bool PTL::GetEnv ( const std::string & env_id,
bool _default )
inline

Definition at line 68 of file GetEnv.hh.

69{
70 char* env_var = std::getenv(env_id.c_str());
71 if(env_var)
72 {
73 std::string var = std::string(env_var);
74 bool val = true;
75 if(var.find_first_not_of("0123456789") == std::string::npos)
76 val = (bool) atoi(var.c_str());
77 else
78 {
79 for(auto& itr : var)
80 itr = tolower(itr);
81 if(var == "off" || var == "false")
82 val = false;
83 }
84 return val;
85 }
86
87 // return default if not specified in environment
88 return _default;
89}

◆ GetEnv() [2/2]

template<typename Tp>
Tp PTL::GetEnv ( const std::string & env_id,
Tp _default = Tp() )

Definition at line 47 of file GetEnv.hh.

48{
49 char* env_var = std::getenv(env_id.c_str());
50 if(env_var)
51 {
52 std::string str_var = std::string(env_var);
53 std::istringstream iss(str_var);
54 Tp var = Tp();
55 iss >> var;
56 return var;
57 }
58
59 // return default if not specified in environment
60 return _default;
61}

◆ GetNumberOfCores()

unsigned PTL::GetNumberOfCores ( )

Definition at line 67 of file Threading.cc.

68{
69 return std::thread::hardware_concurrency();
70}

Referenced by PTL::ThreadPool::execute_on_all_threads(), PTL::ThreadPool::execute_on_specific_threads(), and GetNumberOfPhysicalCpus().

◆ GetNumberOfPhysicalCpus()

unsigned PTL::GetNumberOfPhysicalCpus ( )

Definition at line 75 of file Threading.cc.

76{
77#if defined(PTL_MACOS)
78 int count;
79 size_t count_len = sizeof(count);
80 sysctlbyname("hw.physicalcpu", &count, &count_len, nullptr, 0);
81 return static_cast<unsigned>(count);
82#elif defined(PTL_LINUX)
83 unsigned core_id_count = 0;
84 std::ifstream ifs("/proc/cpuinfo");
85 if(ifs)
86 {
87 std::set<std::string> core_ids;
88 while(true)
89 {
90 std::string line = {};
91 getline(ifs, line);
92 if(!ifs.good())
93 break;
94 if(line.find("core id") != std::string::npos)
95 {
96 for(std::string itr : { "core id", ":", " ", "\t" })
97 {
98 static auto _npos = std::string::npos;
99 auto _pos = _npos;
100 while((_pos = line.find(itr)) != _npos)
101 line = line.replace(_pos, itr.length(), "");
102 }
103 core_ids.insert(std::move(line));
104 }
105 }
106 core_id_count = static_cast<unsigned>(core_ids.size());
107 if(core_id_count > 0)
108 return core_id_count;
109 }
110 return GetNumberOfCores();
111#else
112 return GetNumberOfCores();
113#endif
114}
unsigned GetNumberOfCores()
Definition Threading.cc:67

◆ GetPidId()

Pid_t PTL::GetPidId ( )

Definition at line 58 of file Threading.cc.

59{
60 // In multithreaded mode return Thread ID
61 return std::this_thread::get_id();
62}

◆ GetThreadId()

int PTL::GetThreadId ( )

Definition at line 125 of file Threading.cc.

126{
127 return ThreadID;
128}

◆ SetPinAffinity() [1/2]

bool PTL::SetPinAffinity ( int idx)

Definition at line 133 of file Threading.cc.

134{
135#if defined(__linux__) || defined(_AIX)
136 cpu_set_t _cpu_set{};
137 CPU_ZERO(&_cpu_set);
138 if(_cpu >= 0)
139 CPU_SET(_cpu, &_cpu_set);
140 return (pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &_cpu_set) == 0);
141#else // Not available for Mac, WIN,...
142 ConsumeParameters(_cpu);
143 return true;
144#endif
145}
void ConsumeParameters(Args &&...)

Referenced by PTL::ThreadPool::set_affinity().

◆ SetPinAffinity() [2/2]

bool PTL::SetPinAffinity ( int idx,
NativeThread & _t )

Definition at line 163 of file Threading.cc.

164{
165#if defined(__linux__) || defined(_AIX)
166 cpu_set_t _cpu_set{};
167 CPU_ZERO(&_cpu_set);
168 CPU_SET(_cpu, &_cpu_set);
169 return (pthread_setaffinity_np(static_cast<pthread_t>(_t), sizeof(cpu_set_t),
170 &_cpu_set) == 0);
171#else // Not available for Mac, WIN,...
172 ConsumeParameters(_cpu, _t);
173 return true;
174#endif
175}

◆ SetThreadId()

void PTL::SetThreadId ( int aNewValue)

Definition at line 119 of file Threading.cc.

120{
121 ThreadID = value;
122}

Referenced by PTL::ThreadPool::add_thread_id().

◆ SetThreadPriority() [1/2]

bool PTL::SetThreadPriority ( int _v)

Definition at line 150 of file Threading.cc.

151{
152#if defined(__linux__) || defined(_AIX)
153 return (pthread_setschedprio(pthread_self(), _prio) == 0);
154#else // Not available for Mac, WIN,...
155 ConsumeParameters(_prio);
156 return true;
157#endif
158}

Referenced by PTL::ThreadPool::set_priority().

◆ SetThreadPriority() [2/2]

bool PTL::SetThreadPriority ( int _v,
NativeThread & _t )

Definition at line 180 of file Threading.cc.

181{
182#if defined(__linux__) || defined(_AIX)
183 return (pthread_setschedprio(static_cast<pthread_t>(_t), _prio) == 0);
184#else
185 ConsumeParameters(_prio, _t);
186 return true;
187#endif
188}

Variable Documentation

◆ TaskGroup< Tp, Arg, MaxDepth >::f_verbose

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

Definition at line 737 of file TaskGroup.hh.