Skip to content

Commit b6bc72f

Browse files
[GR-59039] Bump to mx version supporting energy tracking
PullRequest: graal/20653
2 parents 6503a7c + 9f347e7 commit b6bc72f

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

ci/ci_common/bench-common.libsonnet

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
default_numa_node:: 1,
7777
num_threads:: 72
7878
},
79+
x52_root:: self.x52 + {
80+
capabilities: ["linux_root", "amd64", "tmpfs25g"]
81+
},
7982
x82:: common.linux_amd64 + self._bench_machine + {
8083
machine_name:: "x82",
8184
capabilities+: ["tmpfs25g"],

compiler/ci/ci_common/benchmark-builders.jsonnet

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929

3030
local profiling_builds = std.flattenArrays([
3131
[
32-
c.monthly + hw.x52 + jdk + cc.libgraal + suite + cc.enable_profiling + { job_prefix:: "bench-compiler-profiling" },
33-
c.monthly + hw.x52 + jdk + cc.libgraal + suite + cc.footprint_tracking + { job_prefix:: "bench-compiler-footprint" }
32+
c.monthly + hw.x52 + jdk + cc.libgraal + suite + cc.enable_profiling + { job_prefix:: "bench-compiler-profiling" },
33+
c.monthly + hw.x52 + jdk + cc.libgraal + suite + cc.footprint_tracking + { job_prefix:: "bench-compiler-footprint" },
34+
c.monthly + hw.x52_root + jdk + cc.libgraal + suite + cc.energy_tracking + { job_prefix:: "bench-compiler-energy" }
3435
]
3536
for jdk in cc.product_jdks
3637
for suite in bench.groups.main_suites

compiler/ci/ci_common/compiler-common.libsonnet

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,19 @@
3333
]
3434
},
3535

36+
energy_tracking:: {
37+
python_version: 3,
38+
environment+: {
39+
"MX_TRACKER" : "energy"
40+
},
41+
packages+: {
42+
"powerstat": "==0.04.03"
43+
},
44+
docker: {
45+
"image": "buildslave_ol8_podman",
46+
},
47+
},
48+
3649
product_jdks:: [
3750
common["labsjdk-ee-latest"],
3851
],

0 commit comments

Comments
 (0)