Skip to content

Commit

Permalink
Drop Xms from benchmark jobs definition
Browse files Browse the repository at this point in the history
  • Loading branch information
farquet committed Jul 29, 2021
1 parent de192fc commit 6641a4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions common.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,16 @@
heap:: {
small:: {
environment+: {
XMS: small_heap,
XMX: small_heap
}
},
default:: {
environment+: {
XMS: default_heap,
XMX: default_heap
}
},
large:: {
environment+: {
XMS: large_heap,
XMX: large_heap
}
},
Expand Down
4 changes: 2 additions & 2 deletions compiler/ci_common/benchmark-suites.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@
local hwlocBind_16C_32T = ["--hwloc-bind=--cpubind node:0.core:0-15.pu:0-1 --membind node:0"],
run+: [
# JMeter
self.benchmark_cmd + ["shopcart-jmeter:large"] + ["--"] + self.extra_vm_args + ["-Xms8g", "-Xmx8g"],
self.benchmark_cmd + ["shopcart-jmeter:large"] + ["--"] + self.extra_vm_args + ["-Xmx8g"],
bench_upload,
self.benchmark_cmd + ["petclinic-jmeter:tiny"] + ["--"] + self.extra_vm_args + ["-Xms8g", "-Xmx8g"],
self.benchmark_cmd + ["petclinic-jmeter:tiny"] + ["--"] + self.extra_vm_args + ["-Xmx8g"],
bench_upload,
# shopcart-wrk
self.benchmark_cmd + ["shopcart-wrk:mixed-tiny"] + hwlocBind_1C_1T + ["--"] + self.extra_vm_args + ["-Xms32m", "-Xmx112m", "-XX:ActiveProcessorCount=1", "-XX:MaxDirectMemorySize=256m"],
Expand Down

0 comments on commit 6641a4f

Please sign in to comment.