13 Options file to test fix for https://sft.its.cern.ch/jira/browse/CFHEP-114
14 a problem which is ther when declaring dependencies explicitely in the scheduler
15 and having more dependencies than algorithms.
18 from Configurables
import (
20 AvalancheSchedulerSvc,
36 whiteboard = HiveWhiteBoard(
"EventDataSvc", EventSlots=evtslots)
38 slimeventloopmgr = HiveSlimEventLoopMgr(OutputLevel=INFO)
40 scheduler = AvalancheSchedulerSvc(ThreadPoolSize=algosInFlight, OutputLevel=WARNING)
42 AlgResourcePool(OutputLevel=DEBUG)
44 CPUCrunchSvc(shortCalib=
True)
46 a1 = CPUCruncher(
"A1", varRuntime=0.01, avgRuntime=0.1)
47 a1.outKeys = [
"/Event/a1"]
49 a2 = CPUCruncher(
"A2")
50 a2.outKeys = [
"/Event/a2"]
52 a3 = CPUCruncher(
"A3")
53 a3.outKeys = [
"/Event/a3",
"/Event/a4"]
55 a4 = CPUCruncher(
"A4")
56 a4.outKeys = [
"/Event/a5"]
58 for algo
in [a1, a2, a3, a4]:
59 algo.Cardinality = cardinality
60 algo.OutputLevel = WARNING
66 EventLoop=slimeventloopmgr,
67 TopAlg=[a1, a2, a3, a4],
68 MessageSvcType=
"InertMessageSvc",