Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TaskRunManager.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// Author: Jonathan Madsen (May 28st 2020)
27//
28// class description:
29// This is a class for run control in GEANT4 for multi-threaded runs
30// It extends G4RunManager re-implementing multi-threaded behavior in
31// key methods. See documentation for G4RunManager
32// Users initializes an instance of this class instead of G4RunManager
33// to start a multi-threaded simulation.
34
35#ifndef G4TaskRunManager_hh
36#define G4TaskRunManager_hh 1
37
38#include "G4EnvironmentUtils.hh"
39#include "G4MTBarrier.hh"
40#include "G4MTRunManager.hh"
41#include "G4RNGHelper.hh"
42#include "G4RunManager.hh"
43#include "G4TBBTaskGroup.hh"
44#include "G4TaskGroup.hh"
45#include "G4TaskManager.hh"
46#include "G4ThreadPool.hh"
47#include "G4Threading.hh"
48#include "G4VUserTaskQueue.hh"
49
50#include "PTL/TaskRunManager.hh"
51#include "rundefs.hh"
52
53#include <list>
54#include <map>
55
62
63//============================================================================//
64
66{
67 friend class G4RunManagerFactory;
68
69 public:
70 using InitializeSeedsCallback = std::function<G4bool(G4int, G4int&, G4int&)>;
72
73 public:
74 // Returns the singleton instance of the run manager common to all threads
75 // implementing the master behavior
77 {
79 return dynamic_cast<G4TaskRunManager*>(_rm);
80 }
81
82 // Returns the singleton instance of the run manager kernel common to all
83 // threads
85
86 // Parameters:
87 // taskQueue : provide a custom task queue
88 // useTBB : only relevant if GEANT4_USE_TBB defined
89 // evtGrainsize : the number of events per task
90 G4TaskRunManager(G4bool useTBB = G4GetEnv<G4bool>("G4USE_TBB", false));
92 G4bool useTBB = G4GetEnv<G4bool>("G4USE_TBB", false), G4int evtGrainsize = 0);
93 ~G4TaskRunManager() override;
94
96 G4int GetGrainsize() const { return eventGrainsize; }
97 inline G4int GetNumberOfTasks() const { return numberOfTasks; }
99
100 void SetNumberOfThreads(G4int n) override;
101 G4int GetNumberOfThreads() const override;
102 size_t GetNumberActiveThreads() const override
103 {
105 }
107
108 // Inherited methods to re-implement for MT case
109 void Initialize() override;
110 void InitializeEventLoop(G4int n_event, const char* macroFile = nullptr,
111 G4int n_select = -1) override;
112 void InitializeThreadPool() override;
114
115 void Initialize(uint64_t nthreads) override { PTL::TaskRunManager::Initialize(nthreads); }
116
117 void TerminateOneEvent() override;
118 void ProcessOneEvent(G4int i_event) override;
119 void ConstructScoringWorlds() override;
120 void RunTermination() override;
121
122 // The following method should be invoked by G4WorkerTaskRunManager for each
123 // event. False is returned if no more event to be processed. Note: G4Event
124 // object must be instantiated by a worker thread. In case no more
125 // event remains to be processed, that worker thread must delete that G4Event
126 // object. If a worker runs with its own random number sequence, the Boolean
127 // flag reseedRequired should be set to false. This is *NOT* allowed for the
128 // first event.
130 G4bool reseedRequired = true) override;
131
132 // Same as above method, but the seeds are set only once over "eventModulo"
133 // events. The return value shows the number of events the caller Worker has
134 // to process (between 1 and eventModulo depending on number of events yet to
135 // be processed). G4Event object has the event ID of the first event of this
136 // bunch. If zero is returned no more event needs to be processed, and worker
137 // thread must delete that G4Event.
138 G4int SetUpNEvents(G4Event*, G4SeedsQueue* seedsQueue, G4bool reseedRequired = true) override;
139
140 // To be invoked solely from G4WorkerTaskRunManager to merge the results
141 void MergeScores(const G4ScoringManager* localScoringManager) override;
142 void MergeRun(const G4Run* localRun) override;
143
144 // Called to force workers to request and process the UI commands stack
145 // This will block untill all workers have processed UI commands
147
148 // Called by workers to signal to master it has completed processing of
149 // UI commands
150 // virtual WorkerActionRequest ThisWorkerWaitForNextAction();
151 // Worker thread barrier
152 // This method should be used by workers' run manager to wait,
153 // after an event loop for the next action to be performed
154 // (for example execute a new run)
155 // This returns the action to be performed
157
158 void WaitForReadyWorkers() override {}
159 void WaitForEndEventLoopWorkers() override;
160 void ThisWorkerReady() override {}
161 void ThisWorkerEndEventLoop() override {}
162
167
169
170 void AbortRun(G4bool softAbort = false) override;
171 void AbortEvent() override;
172
173 protected:
174 virtual void ComputeNumberOfTasks();
175
176 // Initialize the seeds list, if derived class does not implement this method
177 // A default generation will be used (nevents*2 random seeds)
178 // Return true if initialization is done.
179 G4bool InitializeSeeds(G4int /*nevts*/) override { return false; }
180
181 // Adds one seed to the list of seeds
182 void RefillSeeds() override;
183 void StoreRNGStatus(const G4String& filenamePrefix) override;
184
185 // Creates worker threads and signal to start
186 void CreateAndStartWorkers() override;
187
188 void TerminateWorkers() override;
190 virtual void AddEventTask(G4int);
191
192 protected:
193 // Barriers: synch points between master and workers
195
196 // aliases to inherited member values
201
203 return false;
204 };
205
206 protected:
207 // grainsize
213 // Pointer to the master thread random engine
215};
216
217#endif // G4TaskRunManager_hh
_Tp G4GetEnv(const std::string &env_id, _Tp _default=_Tp())
std::queue< G4long > G4SeedsQueue
PTL::TaskGroup< _Tp, _Arg > G4TaskGroup
PTL::TaskManager G4TaskManager
PTL::ThreadPool G4ThreadPool
G4Thread::id G4ThreadId
long G4long
Definition G4Types.hh:87
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
PTL::VUserTaskQueue G4VUserTaskQueue
static G4MTRunManager * GetMasterRunManager()
Definition G4Run.hh:48
G4int GetNumberOfThreads() const override
void ConstructScoringWorlds() override
void InitializeThreadPool() override
void ThisWorkerEndEventLoop() override
void CreateAndStartWorkers() override
G4bool InitializeSeeds(G4int) override
static G4TaskRunManager * GetMasterRunManager()
void ThisWorkerProcessCommandsStackDone() override
void MergeRun(const G4Run *localRun) override
G4int SetUpNEvents(G4Event *, G4SeedsQueue *seedsQueue, G4bool reseedRequired=true) override
WorkerActionRequest ThisWorkerWaitForNextAction() override
G4TaskManager *& taskManager
G4VUserTaskQueue *& taskQueue
void SetNumberOfThreads(G4int n) override
void SetInitializeSeedsCallback(InitializeSeedsCallback f)
std::function< G4bool(G4int, G4int &, G4int &)> InitializeSeedsCallback
G4int GetNumberOfEventsPerTask() const
void AbortRun(G4bool softAbort=false) override
InitializeSeedsCallback initSeedsCallback
void RefillSeeds() override
void RequestWorkersProcessCommandsStack() override
G4int GetNumberOfTasks() const
virtual void AddEventTask(G4int)
static G4ThreadId GetMasterThreadId()
G4int GetGrainsize() const
void TerminateOneEvent() override
RunTaskGroup * workTaskGroup
CLHEP::HepRandomEngine * masterRNGEngine
void TerminateWorkers() override
void AbortEvent() override
~G4TaskRunManager() override
size_t GetNumberActiveThreads() const override
void InitializeEventLoop(G4int n_event, const char *macroFile=nullptr, G4int n_select=-1) override
void WaitForReadyWorkers() override
void SetGrainsize(G4int n)
void Initialize() override
void MergeScores(const G4ScoringManager *localScoringManager) override
void StoreRNGStatus(const G4String &filenamePrefix) override
void ThisWorkerReady() override
G4TaskRunManagerKernel * MTkernel
void RunTermination() override
void WaitForEndEventLoopWorkers() override
G4TaskGroup< void > RunTaskGroup
G4ThreadPool *& threadPool
static G4TaskRunManagerKernel * GetMTMasterRunManagerKernel()
G4bool ThreadPoolIsInitialized() const
void ProcessOneEvent(G4int i_event) override
friend class G4RunManagerFactory
void Initialize(uint64_t nthreads) override
void NewActionRequest(WorkerActionRequest) override
virtual void ComputeNumberOfTasks()
G4TaskRunManager(G4bool useTBB=G4GetEnv< G4bool >("G4USE_TBB", false))
G4bool SetUpAnEvent(G4Event *, G4long &s1, G4long &s2, G4long &s3, G4bool reseedRequired=true) override
TaskManager * m_task_manager
virtual void Initialize(uint64_t n=std::thread::hardware_concurrency())
ThreadPool * m_thread_pool
VUserTaskQueue * m_task_queue
virtual size_t GetNumberActiveThreads() const