Changeset 243597 in webkit
- Timestamp:
- Mar 27, 2019, 6:47:29 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
PerformanceTests/ChangeLog (modified) (1 diff)
-
PerformanceTests/JetStream2/JetStreamDriver.js (modified) (2 diffs)
-
Websites/browserbench.org/ChangeLog (modified) (1 diff)
-
Websites/browserbench.org/JetStream2.0/JetStreamDriver.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PerformanceTests/ChangeLog
r243541 r243597 1 2019-03-27 Saam Barati <sbarati@apple.com> 2 3 JetStream 2 should not report time values as scores 4 https://bugs.webkit.org/show_bug.cgi?id=196334 5 6 Reviewed by Yusuke Suzuki. 7 8 * JetStream2/JetStreamDriver.js: 9 (toTimeValue): 10 (Driver.prototype.async.reportScoreToRunBenchmarkRunner): 11 1 12 2019-03-27 Saam barati <sbarati@apple.com> 2 13 -
trunk/PerformanceTests/JetStream2/JetStreamDriver.js
r243541 r243597 83 83 } 84 84 85 function toTimeValue(score) { 86 return 5000 / score; 87 } 88 85 89 function updateUI() { 86 90 return new Promise((resolve) => { … … 320 324 const subTimes = benchmark.subTimes(); 321 325 for (const name in subTimes) { 322 subResults[name] = {"metrics": {"Time": {"current": [ subTimes[name]]}}};326 subResults[name] = {"metrics": {"Time": {"current": [toTimeValue(subTimes[name])]}}}; 323 327 } 324 328 results[benchmark.name] = { -
trunk/Websites/browserbench.org/ChangeLog
r243541 r243597 1 2019-03-27 Saam Barati <sbarati@apple.com> 2 3 JetStream 2 should not report time values as scores 4 https://bugs.webkit.org/show_bug.cgi?id=196334 5 6 Reviewed by Yusuke Suzuki. 7 8 * JetStream2.0/JetStreamDriver.js: 9 (toTimeValue): 10 (Driver.prototype.async.reportScoreToRunBenchmarkRunner): 11 1 12 2019-03-27 Saam barati <sbarati@apple.com> 2 13 -
trunk/Websites/browserbench.org/JetStream2.0/JetStreamDriver.js
r243541 r243597 83 83 } 84 84 85 function toTimeValue(score) { 86 return 5000 / score; 87 } 88 85 89 function updateUI() { 86 90 return new Promise((resolve) => { … … 320 324 const subTimes = benchmark.subTimes(); 321 325 for (const name in subTimes) { 322 subResults[name] = {"metrics": {"Time": {"current": [ subTimes[name]]}}};326 subResults[name] = {"metrics": {"Time": {"current": [toTimeValue(subTimes[name])]}}}; 323 327 } 324 328 results[benchmark.name] = {
Note:
See TracChangeset
for help on using the changeset viewer.