Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GR-59931] Renaissance 0.16.0 #10170

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/mx.compiler/mx_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ def compiler_gate_benchmark_runner(tasks, extraVMarguments=None, prefix='', task
}

# Renaissance is missing the msvc redistributable on Windows [GR-50132]
if not mx.is_windows() and jdk.javaCompliance <= '21':
if not mx.is_windows():
for name in renaissance_suite.benchmarkList(bmSuiteArgs):
iterations = renaissance_gate_iterations.get(name, -1)
with Task(prefix + 'Renaissance:' + name, tasks, tags=GraalTags.benchmarktest, report=task_report_component) as t:
Expand Down
19 changes: 13 additions & 6 deletions sdk/mx.sdk/mx_sdk_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -1553,23 +1553,23 @@ def bmSuiteArgs(self):

mx_benchmark.add_bm_suite(BaristaBenchmarkSuite())

# GR-59934 Enable [als, dec-tree, log-regression, naive-bayes]

_renaissanceConfig = {
"akka-uct" : 24,
"als" : -1,
"als" : 60,
"chi-square" : 60,
"db-shootout" : 16,
"dec-tree" : -1,
"dec-tree" : 40,
"dotty" : 50,
"finagle-chirper" : 90,
"finagle-http" : 12,
"fj-kmeans" : 30,
"future-genetic" : 50,
"gauss-mix" : 40,
"log-regression" : -1,
"log-regression" : 20,
"mnemonics" : 16,
"movie-lens" : 20,
"naive-bayes" : -1,
"naive-bayes" : 30,
"neo4j-analytics" : 20,
"page-rank" : 20,
"par-mnemonics" : 16,
Expand Down Expand Up @@ -1617,6 +1617,13 @@ def renaissanceIterations(self):
del benchmarks["gauss-mix"]
del benchmarks["page-rank"]
del benchmarks["movie-lens"]
if mx.get_jdk().javaCompliance >= '24':
# JEP 486 Security Manager removal causes the following benchmarks to fail unconditionally.
# See https://github.com/renaissance-benchmarks/renaissance/pull/453 for a temporary fix.
del benchmarks["als"]
del benchmarks["dec-tree"]
del benchmarks["log-regression"]
del benchmarks["naive-bayes"]

return benchmarks

Expand All @@ -1627,7 +1634,7 @@ def defaultSuiteVersion(self):
return self.availableSuiteVersions()[-1]

def availableSuiteVersions(self):
return ["0.14.1", "0.15.0"]
return ["0.14.1", "0.15.0", "0.16.0"]

def renaissancePath(self):
lib = mx.library(self.renaissanceLibraryName())
Expand Down
5 changes: 5 additions & 0 deletions sdk/mx.sdk/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,11 @@
"digest" : "sha512:2682ac2dd133efb143352fc571671859980044565470188ea26a95926132f43477686fe321f012f7af9ba5f4022b797e4b7591f63bb12450a80f820456a54ac2",
},

"RENAISSANCE_0.16.0" : {
"urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/renaissance/renaissance-gpl-0.16.0.jar"],
"digest" : "sha512:82cc829636f3420622b9ce55fb0406230a2a90692f03f0e85bfe6d99f1bd58ee9ec173695bd1c597aeae149b19391231d0f7fe47ca290334b2dba7c7cd3ef64e",
},

"UBENCH_AGENT_DIST" : {
"urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/java-ubench-agent-2e5becaf97afcf64fd8aef3ac84fc05a3157bff5.zip"],
"digest" : "sha512:5ec1781aaceb3c1c6123e6db52a49967399f42ac9c81ef87e2abdf7b8d4a8cd0dac6b8e31e9a57ee0e890b15e1a9326a4a3e44e742f9aa1cba7836361c50b921",
Expand Down