Title: [280215] trunk/JSTests
Revision
280215
Author
ysuz...@apple.com
Date
2021-07-22 20:17:00 -0700 (Thu, 22 Jul 2021)

Log Message

Reduce iteration of microbenchmarks/memcpy-typed-loop.js
https://bugs.webkit.org/show_bug.cgi?id=228214

Reviewed by Saam Barati.

Observing frequent timeout (e.g. https://ews-build.webkit.org/#/builders/1/builds/44698).
We do not need to have such a large # of iterations.

* microbenchmarks/memcpy-typed-loop.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (280214 => 280215)


--- trunk/JSTests/ChangeLog	2021-07-23 02:14:10 UTC (rev 280214)
+++ trunk/JSTests/ChangeLog	2021-07-23 03:17:00 UTC (rev 280215)
@@ -1,3 +1,15 @@
+2021-07-22  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Reduce iteration of microbenchmarks/memcpy-typed-loop.js
+        https://bugs.webkit.org/show_bug.cgi?id=228214
+
+        Reviewed by Saam Barati.
+
+        Observing frequent timeout (e.g. https://ews-build.webkit.org/#/builders/1/builds/44698).
+        We do not need to have such a large # of iterations.
+
+        * microbenchmarks/memcpy-typed-loop.js:
+
 2021-07-22  Saam Barati  <sbar...@apple.com>
 
         AirStackSlot's uint16_t byte size is too small

Modified: trunk/JSTests/microbenchmarks/memcpy-typed-loop.js (280214 => 280215)


--- trunk/JSTests/microbenchmarks/memcpy-typed-loop.js	2021-07-23 02:14:10 UTC (rev 280214)
+++ trunk/JSTests/microbenchmarks/memcpy-typed-loop.js	2021-07-23 03:17:00 UTC (rev 280215)
@@ -19,7 +19,8 @@
     arr1[i] = i
 }
 
-for (let i=0; i<10000000; ++i) doTest(arr1, arr2)
+for (let i=0; i<1e4; ++i)
+    doTest(arr1, arr2)
 
 arr2 = new Int32Array(arr1.length)
 doTest(arr1, arr2)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to