Geant4-11
TaskRunManager.hh
Go to the documentation of this file.
1//
2// MIT License
3// Copyright (c) 2020 Jonathan R. Madsen
4// Permission is hereby granted, free of charge, to any person obtaining a copy
5// of this software and associated documentation files (the "Software"), to deal
6// in the Software without restriction, including without limitation the rights
7// to use, copy, modify, merge, publish, distribute, sublicense, and
8// copies of the Software, and to permit persons to whom the Software is
9// furnished to do so, subject to the following conditions:
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED
12// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
13// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
15// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
16// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
17// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18//
19// class description:
20// This is a class for run control in Tasking for multi-threaded runs
21// It extends RunManager re-implementing multi-threaded behavior in
22// key methods. See documentation for RunManager
23// Users initializes an instance of this class instead of RunManager
24// to start a multi-threaded simulation.
25
26#pragma once
27
28#include "PTL/TBBTaskGroup.hh"
29#include "PTL/TaskGroup.hh"
30#include "PTL/ThreadPool.hh"
31#include "PTL/Threading.hh"
32#include "PTL/VUserTaskQueue.hh"
33
34#include <list>
35#include <map>
36
37namespace PTL
38{
39class ThreadPool;
40class TaskManager;
41
42//======================================================================================//
43
45{
46public:
48
49public:
50 // Parameters:
51 // m_task_queue: provide a custom task queue
52 // useTBB: only relevant if PTL_USE_TBB defined
53 // grainsize: 0 = auto
54 explicit TaskRunManager(bool useTBB = false);
55 virtual ~TaskRunManager() = default;
56
57public:
58 virtual int GetNumberOfThreads() const
59 {
60 return (m_thread_pool) ? m_thread_pool->size() : 0;
61 }
62 virtual size_t GetNumberActiveThreads() const
63 {
64 return (m_thread_pool) ? m_thread_pool->size() : 0;
65 }
66
67public:
68 // Inherited methods to re-implement for MT case
69 virtual void Initialize(uint64_t n = std::thread::hardware_concurrency());
70 virtual void Terminate();
73 bool IsInitialized() const { return m_is_initialized; }
74 int GetVerbose() const { return m_verbose; }
75 void SetVerbose(int val) { m_verbose = val; }
76
77public: // with description
78 // Singleton implementing master thread behavior
79 static TaskRunManager* GetInstance(bool useTBB = false);
80 static TaskRunManager* GetMasterRunManager(bool useTBB = false);
81
82private:
83 static pointer& GetPrivateMasterRunManager(bool init, bool useTBB = false);
84
85protected:
86 // Barriers: synch points between master and workers
87 bool m_is_initialized = false;
88 int m_verbose = 0;
89 uint64_t m_workers = 0;
93};
94
95} // namespace PTL
virtual int GetNumberOfThreads() const
TaskManager * m_task_manager
static TaskRunManager * GetMasterRunManager(bool useTBB=false)
bool IsInitialized() const
int GetVerbose() const
virtual void Initialize(uint64_t n=std::thread::hardware_concurrency())
TaskManager * GetTaskManager() const
virtual void Terminate()
ThreadPool * m_thread_pool
void SetVerbose(int val)
TaskRunManager(bool useTBB=false)
static pointer & GetPrivateMasterRunManager(bool init, bool useTBB=false)
VUserTaskQueue * m_task_queue
virtual size_t GetNumberActiveThreads() const
static TaskRunManager * GetInstance(bool useTBB=false)
ThreadPool * GetThreadPool() const
virtual ~TaskRunManager()=default
TaskRunManager * pointer
size_type size() const
Definition: ThreadPool.hh:163
Definition: AutoLock.hh:254