Skip to content

Commit 80e8025

Browse files
committed
Disable frequency scaling, as that should be on by default for the
bench targets.
1 parent cfe9319 commit 80e8025

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

wasm/ci.jsonnet

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ local common = import 'ci_common/common.jsonnet';
1010

1111
# Benchmark jobs.
1212
common.jdk8_bench_linux_wabt_emsdk + common.bench_graalwasm_emsdk_jvmci + {
13-
name: 'gate-graalwasm-benchtest-linux-amd64',
13+
name: 'bench-graalwasm-c-micro-benchmarks-linux-amd64',
1414
environment+: {
15-
BENCH_RUNNER: 'run_micro_benchmarks.sh',
15+
SUITE: 'wasm',
16+
BENCH_RUNNER: 'run_c_micro_benchmarks.sh',
1617
BENCH_VM: 'server',
1718
BENCH_VM_CONFIG: 'graal-core',
1819
},

wasm/ci_common/common.jsonnet

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,15 @@
129129
['mx', '--dy', '/compiler', 'build', '--all'],
130130
],
131131
run+: [
132-
'scripts/${BENCH_RUNNER}',
133-
'${BENCH_RESULTS_FILE_PATH}',
134-
'${BENCH_VM}',
135-
'${BENCH_VM_CONFIG}',
136-
'bench-uploader.py',
132+
[
133+
'scripts/${BENCH_RUNNER}',
134+
'${BENCH_RESULTS_FILE_PATH}',
135+
'${BENCH_VM}',
136+
'${BENCH_VM_CONFIG}',
137+
'bench-uploader.py',
138+
]
137139
],
138-
capabilities: self.linux.capabilities + [x52, no_frequency_scaling],
140+
capabilities+: ['x52'],
139141
},
140142

141143
jdk8_gate_linux_eclipse_jdt : self.jdk8 + self.gate + self.linux + self.eclipse + self.jdt,

0 commit comments

Comments
 (0)