13Reference optionfile which shows in a simple way how to take advantage of the
14Gaudi components desicated to concurrency.
16 o HiveWhiteBoard: a convenient way to collect several TES (one per "processing
17 slot"), accessible in a thread safe way, keeps a catalogue of the products
18 written on each processing slot. The number of slots in the whiteboard
19 determines also the number of events processed simultaneously by the scheduler.
20 o AvalancheSchedulerSvc: state machine of the algorithms interfaced with the
21 TBB runtime. It is responsible for the submission of the algorithms. An
22 algorithm is marked ready for submission when its needed input is available.
23 It deals the asynchronous termination of algorithms with a "receiver" thread
24 and a thread safe queue.
25 o HiveSlimEventLoopMgr: an event factory. Pushes new events and pops finished
26 events to/from the scheduler. It does not manage algorithms/streams.
27 o AlgResourcePool: Service managing the creation of algorithms (through the
28 algorithm manager), including clones. It also manages the algorithms according
29 to the resources they need.
30 o InertMessageSvc: as the TBBMsgSvc, it manages the printing of the messages in
31 a multithreaded environment.
33The CPUCruncher is not a component dealing with concurrency, but a useful
34entity to test it. It's an algorithm that simply wastes cpu.
38from Configurables
import (
40 AvalancheSchedulerSvc,
41 ContextEventCounterData,
42 ContextEventCounterPtr,
80 ThreadPoolSize=threads, OutputLevel=WARNING, DataDepsGraphFile=
"graphDump.dot"
92a1.outKeys = [
"/Event/a1"]
95a2.inpKeys = [
"/Event/a1"]
96a2.outKeys = [
"/Event/a2"]
99a3.inpKeys = [
"/Event/a1"]
100a3.outKeys = [
"/Event/a3"]
103a4.inpKeys = [
"/Event/a2",
"/Event/a3"]
104a4.outKeys = [
"/Event/a4"]
106for algo
in [a1, a2, a3, a4]:
107 algo.Cardinality = cardinality
108 algo.OutputLevel = WARNING
109 algo.varRuntime = 0.3
110 algo.avgRuntime = 0.5
122 EventLoop=slimeventloopmgr,
123 TopAlg=[a1, a2, a3, a4, ctrp, ctrd],
124 MessageSvcType=
"InertMessageSvc",
The Application Manager class.
A class that implements a search for prime numbers.