-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathaeminiumrt.config
More file actions
90 lines (71 loc) · 3.97 KB
/
aeminiumrt.config
File metadata and controls
90 lines (71 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# The AEminium runtime will first try to read the configuration file to which
# the environment variable $AEMINIUMRT_CONFIG points to. If the variable is not
# set it will continue to find the configuration file 'aeminiumrt.config' in the
# current working directory. If no configuration file is found then then built-in
# default values are used.
#============================================================================
# global configurations
#============================================================================
global.implementation = default
#============================================================================
# WorkSteadling Runtime configuration
#============================================================================
ImplicitWorkStealingRuntime.nestedAtomicTasks = false
ImplicitWorkStealingRuntime.enableGraphViz = false
ImplicitWorkStealingRuntime.graphVizName = GraphVizOutput
ImplicitWorkStealingRuntime.ranksep = 1
ImplicitWorkStealingRuntime.rankdir = BT
ImplicitWorkStealingRuntime.enableProfiler = true
ImplicitWorkStealingRuntime.offlineProfiling = false
ImplicitWorkStealingRuntime.outputOffline = snapshot.jsp
ImplicitWorkStealingRuntime.profileCPU = false
ImplicitWorkStealingRuntime.profileTelemetry = true
ImplicitWorkStealingRuntime.profileAeCounters = true
ImplicitWorkStealingRuntime.profileAeTaskDetails = true
ImplicitWorkStealingRuntime.parallelizeUseTimer = false
ImplicitWorkStealingRuntime.parallelizeUpdateTimer = 10
#============================================================================
# implicit graph configuration
#============================================================================
ImplicitGraph.debug = false
ImplicitGraph.checkForCycles = true
ImplicitGraph.pollingTimeout = 0
#============================================================================
# work stealing threads
#============================================================================
WorkStealingThread.maxRecursionDepth = 512
#============================================================================
# implicit task configuration
#============================================================================
ImplicitTask.debug = false
#============================================================================
# datagroup task configuration
#============================================================================
FifoDataGroup.checkForDeadlocks = false
FifoDataGroup.graphVizShowLockingOrder = true
#============================================================================
# worker thread configuration
#============================================================================
WorkerThread.pollingCount = 10
#============================================================================
# blocking work stealing configuration configurations
#============================================================================
BlockingWorkStealingScheduler.maxQueueLength = 0
BlockingWorkStealingScheduler.oneTaskPerLevel = true
BlockingWorkStealingScheduler.unparkInterval = 100
BlockingWorkStealingScheduler.workStealingAlgorithm = StealFromMaxQueue
BlockingWorkStealingScheduler.useBlockingThreadPool = false
#============================================================================
# blocking thread pool
#============================================================================
BlockingThreadPool.maxThreads = 16
#============================================================================
# ParallelizationDecider
#============================================================================
DeciderFactory.implementation = aeminium.runtime.implementations.implicitworkstealing.decider.SysMon2
SysMon2.parallelizeThreshold = 50
SysMon2.memoryThreshold = 80
#============================================================================
# ForCycle Helper
#============================================================================
ForTask.LazyBinarySplittingPPS = 3