]> gitweb.factorcode.org Git - factor.git/commitdiff
benchmark.crc32: do more work in the crc32-benchmark.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 19 Apr 2013 18:35:47 +0000 (11:35 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 19 Apr 2013 18:35:47 +0000 (11:35 -0700)
extra/benchmark/crc32/crc32.factor

index befd25b6b92fdd5b0751f621f4bc6313b51e0929..eb7eedb41a91957111b99d14cb71e22785c2ef10 100644 (file)
@@ -2,7 +2,7 @@ USING: checksums checksums.crc32 io.encodings.ascii io.files kernel math ;
 IN: benchmark.crc32
 
 : crc32-benchmark ( -- )
-    10 [
+    1,000 [
         "vocab:mime/multipart/multipart-tests.factor"
         crc32 checksum-file drop
     ] times ;