This repository was archived by the owner on Mar 11, 2019. It is now read-only.
File tree 3 files changed +5
-9
lines changed
powerapi-core/src/main/scala/org/powerapi
powerapi-sampling/src/universal/conf
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ object PowerMeterMessages {
51
51
trait PowerMeterConfiguration extends Configuration {
52
52
lazy val timeout : Timeout = load { _.getDuration(" powerapi.actors.timeout" , TimeUnit .MILLISECONDS ) } match {
53
53
case ConfigValue (value) => Timeout (value.milliseconds)
54
- case _ => Timeout (1l .seconds)
54
+ case _ => Timeout (15l .seconds)
55
55
}
56
56
}
57
57
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ import scala.concurrent.duration.DurationLong
39
39
trait LibpfmCoreSensorConfiguration extends Configuration {
40
40
lazy val timeout : Timeout = load { _.getDuration(" powerapi.actors.timeout" , TimeUnit .MILLISECONDS ) } match {
41
41
case ConfigValue (value) => Timeout (value.milliseconds)
42
- case _ => Timeout (1l .seconds)
42
+ case _ => Timeout (15l .seconds)
43
43
}
44
44
45
45
lazy val topology : Map [Int , Set [Int ]] = load { conf =>
Original file line number Diff line number Diff line change 1
1
# Configuration parameters to edit with your own settings.
2
- interval = 250ms
3
-
4
2
powerspy.mac = "00:0B:CE:07:1E:9B"
5
3
6
4
powerapi.cpu.topology = [
@@ -10,10 +8,6 @@ powerapi.cpu.topology = [
10
8
{ core = 3, indexes = [3, 7] }
11
9
]
12
10
13
- powerapi.sampling.step-duration = 5
14
- powerapi.sampling.sampling-directory = "samples"
15
- powerapi.sampling.processing-directory = "processing"
16
- powerapi.sampling.computing-directory = "formulae"
17
11
powerapi.sampling.dvfs = true
18
12
powerapi.sampling.turbo = true
19
13
@@ -23,7 +17,9 @@ powerapi.cycles-polynom-regression.unhalted-cycles-event = "CPU_CLK_UNHALTED:THR
23
17
powerapi.cycles-polynom-regression.ref-cycles-event = "CPU_CLK_UNHALTED:REF_P"
24
18
25
19
# You should not change these parameters
26
- powerapi.actors.timeout = 30s
20
+ interval = 1s
21
+ powerapi.actors.timeout = 15s
27
22
powerapi.sampling.interval = ${interval}
28
23
powerspy.interval = ${interval}
29
24
powerapi.sampling.steps = [100, 25]
25
+ powerapi.sampling.step-duration = 10
You can’t perform that action at this time.
0 commit comments