Skip to content

Commit

Permalink
minor jsonnet improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
farquet committed Apr 7, 2022
1 parent 940554f commit 2b0c364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/ci_common/compiler-common.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"--results-file",
"${BENCH_RESULTS_FILE_PATH}",
"--machine-name=${MACHINE_NAME}"] +
(if std.objectHasAll(self.environment, 'MX_TRACKER') then ["--tracker=${MX_TRACKER}"] else ["--tracker=rss"]),
(if std.objectHasAll(self.environment, 'MX_TRACKER') then ["--tracker=" + self.environment['MX_TRACKER']] else ["--tracker=rss"]),
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

0 comments on commit 2b0c364

Please sign in to comment.