Title: [241193] trunk/PerformanceTests
Revision
241193
Author
[email protected]
Date
2019-02-08 01:54:50 -0800 (Fri, 08 Feb 2019)

Log Message

Update JetStream2 CLI to not print "ms" since we now just print the score values
https://bugs.webkit.org/show_bug.cgi?id=193981

Reviewed by Yusuke Suzuki.

* JetStream2/JetStreamDriver.js:
(DefaultBenchmark.prototype.updateUIAfterRun):
(DefaultBenchmark):
(WSLBenchmark.prototype.updateUIAfterRun):
(WSLBenchmark):
(WasmBenchmark.prototype.updateUIAfterRun):
(WasmBenchmark):

Modified Paths

Diff

Modified: trunk/PerformanceTests/ChangeLog (241192 => 241193)


--- trunk/PerformanceTests/ChangeLog	2019-02-08 09:46:36 UTC (rev 241192)
+++ trunk/PerformanceTests/ChangeLog	2019-02-08 09:54:50 UTC (rev 241193)
@@ -1,3 +1,18 @@
+2019-02-08  Saam barati  <[email protected]>
+
+        Update JetStream2 CLI to not print "ms" since we now just print the score values
+        https://bugs.webkit.org/show_bug.cgi?id=193981
+
+        Reviewed by Yusuke Suzuki.
+
+        * JetStream2/JetStreamDriver.js:
+        (DefaultBenchmark.prototype.updateUIAfterRun):
+        (DefaultBenchmark):
+        (WSLBenchmark.prototype.updateUIAfterRun):
+        (WSLBenchmark):
+        (WasmBenchmark.prototype.updateUIAfterRun):
+        (WasmBenchmark):
+
 2019-01-31  Sihui Liu  <[email protected]>
 
         REGRESSION (r240358): IndexedDB/large-binary-keys.html and IndexedDB/large-string-keys.html perf tests failing

Modified: trunk/PerformanceTests/JetStream2/JetStreamDriver.js (241192 => 241193)


--- trunk/PerformanceTests/JetStream2/JetStreamDriver.js	2019-02-08 09:46:36 UTC (rev 241192)
+++ trunk/PerformanceTests/JetStream2/JetStreamDriver.js	2019-02-08 09:54:50 UTC (rev 241193)
@@ -633,9 +633,9 @@
             return;
         }
 
-        print("    Startup:", uiFriendlyNumber(this.firstIteration), "ms");
-        print("    Worst Case:", uiFriendlyNumber(this.worst4), "ms");
-        print("    Average:", uiFriendlyNumber(this.average), "ms");
+        print("    Startup:", uiFriendlyNumber(this.firstIteration));
+        print("    Worst Case:", uiFriendlyNumber(this.worst4));
+        print("    Average:", uiFriendlyNumber(this.average));
         print("    Score:", uiFriendlyNumber(this.score));
         if (RAMification) {
             print("    Current Footprint:", uiFriendlyNumber(this.currentFootprint));
@@ -727,8 +727,8 @@
             return;
         }
 
-        print("    Stdlib:", uiFriendlyNumber(this.stdlib), "ms");
-        print("    Tests:", uiFriendlyNumber(this.mainRun), "ms");
+        print("    Stdlib:", uiFriendlyNumber(this.stdlib));
+        print("    Tests:", uiFriendlyNumber(this.mainRun));
         print("    Score:", uiFriendlyNumber(this.score));
         if (RAMification) {
             print("    Current Footprint:", uiFriendlyNumber(this.currentFootprint));
@@ -883,8 +883,8 @@
             document.getElementById(this.scoreID).innerHTML = uiFriendlyNumber(this.score);
             return;
         }
-        print("    Startup:", uiFriendlyNumber(this.startupTime), "ms");
-        print("    Run time:", uiFriendlyNumber(this.runTime), "ms");
+        print("    Startup:", uiFriendlyNumber(this.startupTime));
+        print("    Run time:", uiFriendlyNumber(this.runTime));
         if (RAMification) {
             print("    Current Footprint:", uiFriendlyNumber(this.currentFootprint));
             print("    Peak Footprint:", uiFriendlyNumber(this.peakFootprint));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to