Skip to content

Commit 2e0def0

Browse files
committed
Add C2 aarch64 microservices benchmarking
1 parent 6146963 commit 2e0def0

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

compiler/ci/ci_includes/baseline-benchmarks.jsonnet

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,14 @@
66
local bench = (import '../ci_common/benchmark-suites.libsonnet'),
77
local hw = bc.bench_hw,
88

9-
local hotspot_amd64_builds = [
10-
c.weekly + hw.e3 + jdk + cc.c2 + suite
9+
local hotspot_builds = std.flattenArrays([
10+
[
11+
c.weekly + hw.e3 + jdk + cc.c2 + suite,
12+
c.weekly + hw.a12c + jdk + cc.c2 + suite
13+
]
1114
for jdk in cc.jdks_of_interest
1215
for suite in bench.groups.all_suites
13-
],
14-
15-
local hotspot_aarch64_builds = [
16-
c.weekly + hw.a12c + jdk + cc.c2 + suite
17-
for jdk in cc.jdks_of_interest
18-
for suite in bench.groups.main_suites
19-
] + [
20-
c.monthly + hw.a12c + jdk + cc.c2 + bench.specjbb2015,
21-
for jdk in cc.product_jdks
22-
],
16+
]),
2317

2418
local hotspot_profiling_builds = std.flattenArrays([
2519
[
@@ -73,7 +67,7 @@
7367
]
7468
for jdk in cc.product_jdks
7569
]),
76-
local all_builds = hotspot_amd64_builds + hotspot_aarch64_builds + hotspot_profiling_builds +
70+
local all_builds = hotspot_builds + hotspot_profiling_builds +
7771
weekly_forks_amd64_builds + weekly_forks_aarch64_builds + economy_builds + no_tiered_builds + gc_variants_builds,
7872
local filtered_builds = [b for b in all_builds if b.is_jdk_supported(b.jdk_version) && b.is_arch_supported(b.arch)],
7973

0 commit comments

Comments
 (0)