We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41484f commit 81e450dCopy full SHA for 81e450d
truffle/src/org.graalvm.polybench/src/org/graalvm/polybench/Config.java
@@ -140,7 +140,8 @@ private Summary parseFallbackBenchSpecificSummary(Value benchmark) {
140
} else if (benchmark.hasMember(AverageSummary.class.getSimpleName())) {
141
return new AverageSummary();
142
}
143
- return null;
+ // defaulting to averaging if the aggregation strategy is not specified
144
+ return new AverageSummary();
145
146
147
@Override
0 commit comments