Skip to content

Commit

Permalink
[GR-44520] Use hybrid time -v and psrecord tracker for benchmarking.
Browse files Browse the repository at this point in the history
PullRequest: graal/14114
  • Loading branch information
peter-hofer committed Apr 4, 2023
2 parents 56798ae + e6b31c2 commit 09c1434
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Jsonnet files should not include this file directly but use ci/common.jsonnet instead."
],

"mx_version": "6.18.0",
"mx_version": "6.18.1",

"COMMENT.jdks": "When adding or removing JDKs keep in sync with JDKs in ci/common.jsonnet",
"jdks": {
Expand Down
7 changes: 6 additions & 1 deletion compiler/ci/ci_common/compiler-common.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@
"--results-file",
"${BENCH_RESULTS_FILE_PATH}",
"--machine-name=${MACHINE_NAME}"] +
(if std.objectHasAll(self.environment, 'MX_TRACKER') then ["--tracker=" + self.environment['MX_TRACKER']] else ["--tracker=rss"]),
(if std.objectHasAll(self.environment, 'MX_TRACKER') then ["--tracker=" + self.environment['MX_TRACKER']] else ["--tracker=psrecord+maxrss"]),
packages+: {
"pip:psrecord": "==1.2",
"pip:matplotlib": "==3.3.4",
"pip:psutil": "==5.9.0"
},
benchmark_cmd:: bench_common.hwlocIfNuma(self.should_use_hwloc, self.plain_benchmark_cmd, node=self.default_numa_node),
min_heap_size:: if std.objectHasAll(self.environment, 'XMS') then ["-Xms${XMS}"] else [],
max_heap_size:: if std.objectHasAll(self.environment, 'XMX') then ["-Xmx${XMX}"] else [],
Expand Down
2 changes: 1 addition & 1 deletion compiler/mx.compiler/suite.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
suite = {
"mxversion": "6.17.0",
"mxversion": "6.18.1",
"name" : "compiler",
"sourceinprojectwhitelist" : [],

Expand Down
2 changes: 1 addition & 1 deletion sdk/mx.sdk/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# SOFTWARE.
#
suite = {
"mxversion": "6.17.0",
"mxversion": "6.18.1",
"name" : "sdk",
"version" : "23.1.0",
"release" : False,
Expand Down
2 changes: 1 addition & 1 deletion vm/mx.vm/suite.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
suite = {
"name": "vm",
"version" : "23.1.0",
"mxversion": "6.17.0",
"mxversion": "6.18.1",
"release" : False,
"groupId" : "org.graalvm",

Expand Down

0 comments on commit 09c1434

Please sign in to comment.