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.
2 parents fb121f5 + c4e1e8c commit 6eba601Copy full SHA for 6eba601
1 file changed
speed_pypy/templates/home.html
@@ -108,7 +108,9 @@ <h3>How has {{ default_exe.project }} performance evolved over time?</h3>
108
plotdata[0].push(relative_value);
109
plotdata[1].push(1.0);
110
labels.push(relative_value.toFixed(2));
111
- trunk_geomean *= relative_value;
+ if (relative_value > 0) {
112
+ trunk_geomean *= relative_value;
113
+ }
114
}
115
trunk_geomean = Math.pow(trunk_geomean, 1/plotdata[0].length);
116
var geofaster = 1/trunk_geomean;
0 commit comments