From 2e0148771819d01f92b317d88ad1bbc24399cb77 Mon Sep 17 00:00:00 2001 From: Majid Arif Siddiqui Date: Thu, 21 Aug 2014 01:29:31 +0800 Subject: [PATCH] fixed conflicts from merge #6 --- results/array_filter.md | 10 ++++++++++ results/array_loop.md | 14 ++++++++++++++ results/array_map.md | 14 ++++++++++++++ results/array_prepend.md | 14 ++++++++++++++ results/bluebird_vs_q.md | 11 +++++++++++ results/buf_read.md | 14 ++++++++++++++ results/buf_write.md | 14 ++++++++++++++ results/conditional.md | 14 ++++++++++++++ results/delete.md | 11 +++++++++++ results/delete_last_item.md | 11 +++++++++++ results/duplicate.md | 11 +++++++++++ results/function_call.md | 11 +++++++++++ results/inc_int.md | 14 ++++++++++++++ results/manip_recv_buf.md | 14 ++++++++++++++ results/object_loop.md | 9 +++++++++ results/proto_vs_literal.md | 11 +++++++++++ results/round_num.md | 14 ++++++++++++++ results/send_buf.md | 14 ++++++++++++++ results/str_to_int.md | 14 ++++++++++++++ results/string_search.md | 11 +++++++++++ results/type_check.md | 11 +++++++++++ 21 files changed, 261 insertions(+) diff --git a/results/array_filter.md b/results/array_filter.md index e49235a..76dbc06 100644 --- a/results/array_filter.md +++ b/results/array_filter.md @@ -31,6 +31,16 @@ Darwin x64 - 13.2.0
Array#filter82,158 ops/sec ±7.58% (31 runs sampled)
underscore#filter81,648 ops/sec ±8.17% (37 runs sampled)
lodash#filter402,548 ops/sec ±6.78% (55 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
Array#filter59,032 ops/sec ±16.83% (25 runs sampled)
underscore#filter60,934 ops/sec ±18.15% (31 runs sampled)
lodash#filter152,863 ops/sec ±12.80% (26 runs sampled)
+ > Notes: > - Fastest is lodash#filter diff --git a/results/array_loop.md b/results/array_loop.md index c3292e7..f008437 100644 --- a/results/array_loop.md +++ b/results/array_loop.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is pop valid + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is Do-while loop i--,For loop cached + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
For loop basic185,947 ops/sec ±16.45% (32 runs sampled)
While loop basic164,200 ops/sec ±15.83% (24 runs sampled)
For loop cached218,918 ops/sec ±12.13% (37 runs sampled)
For loop i--29,449 ops/sec ±10.82% (35 runs sampled)
Do-while loop i--99,298 ops/sec ±10.20% (51 runs sampled)
Do-while loop --i76,253 ops/sec ±4.43% (69 runs sampled)
For..in loop8,295 ops/sec ±6.07% (62 runs sampled)
Array#forEach24,476 ops/sec ±5.22% (81 runs sampled)
underscore#each25,298 ops/sec ±2.72% (89 runs sampled)
lodash#each62,495 ops/sec ±3.93% (82 runs sampled)
shift valid24,220 ops/sec ±5.78% (87 runs sampled)
pop valid113,093 ops/sec ±3.51% (82 runs sampled)
+ +> Notes: +> - Fastest is For loop cached,For loop basic + diff --git a/results/array_map.md b/results/array_map.md index c12c1ae..459753d 100644 --- a/results/array_map.md +++ b/results/array_map.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is lodash#map + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is lodash#map + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
CoffeeScript comprehension25,414 ops/sec ±18.40% (29 runs sampled)
for loop (with function call)21,676 ops/sec ±13.46% (28 runs sampled)
Array#map4,693 ops/sec ±12.94% (28 runs sampled)
underscore#map6,770 ops/sec ±10.48% (37 runs sampled)
lodash#map29,264 ops/sec ±8.86% (53 runs sampled)
+ +> Notes: +> - Fastest is lodash#map,CoffeeScript comprehension + diff --git a/results/array_prepend.md b/results/array_prepend.md index d981110..32e4808 100644 --- a/results/array_prepend.md +++ b/results/array_prepend.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is unshift,unshift no mutate + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is unshift,prepend fn + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
unshift1,671,869 ops/sec ±17.60% (26 runs sampled)
prepend fn679,464 ops/sec ±16.11% (28 runs sampled)
unshift no mutate1,178,501 ops/sec ±13.46% (32 runs sampled)
+ +> Notes: +> - Fastest is unshift + diff --git a/results/bluebird_vs_q.md b/results/bluebird_vs_q.md index a8af9cf..635f3d4 100644 --- a/results/bluebird_vs_q.md +++ b/results/bluebird_vs_q.md @@ -19,6 +19,7 @@ Linux x64 - 3.8.4-1-ARCH + Darwin x64 - 13.2.0 ----- @@ -28,6 +29,16 @@ Darwin x64 - 13.2.0
bluebird475,897 ops/sec ±13.80% (34 runs sampled)
q15,712 ops/sec ±17.03% (21 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
bluebird211,756 ops/sec ±17.14% (25 runs sampled)
q19,951 ops/sec ±14.09% (27 runs sampled)
+ > Notes: > - Fastest is bluebird diff --git a/results/buf_read.md b/results/buf_read.md index dbfe0d2..b493163 100644 --- a/results/buf_read.md +++ b/results/buf_read.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is plainArray noAssert + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is buf.read noAssert + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
buf.read866,876 ops/sec ±16.42% (27 runs sampled)
buf.myRead1,148,220 ops/sec ±15.48% (25 runs sampled)
buf.read noAssert1,695,149 ops/sec ±12.44% (28 runs sampled)
buf.myRead noAssert3,645,886 ops/sec ±11.18% (31 runs sampled)
plainArray4,041,972 ops/sec ±8.65% (43 runs sampled)
plainArray noAssert10,485,913 ops/sec ±6.85% (68 runs sampled)
ArrayBuffer DataView1,791,244 ops/sec ±5.09% (74 runs sampled)
+ +> Notes: +> - Fastest is plainArray noAssert + diff --git a/results/buf_write.md b/results/buf_write.md index 637298c..443b952 100644 --- a/results/buf_write.md +++ b/results/buf_write.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is buf.myWrite noAssert + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is buf.write noAssert + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
buf.write2,836,134 ops/sec ±15.93% (26 runs sampled)
buf.myWrite3,478,758 ops/sec ±16.18% (27 runs sampled)
buf.write noAssert7,137,474 ops/sec ±15.01% (31 runs sampled)
buf.myWrite noAssert11,312,602 ops/sec ±12.61% (43 runs sampled)
+ +> Notes: +> - Fastest is buf.myWrite noAssert + diff --git a/results/conditional.md b/results/conditional.md index d022d0a..a4f4974 100644 --- a/results/conditional.md +++ b/results/conditional.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is lookup table + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is if else,switch + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
if else8,652,776 ops/sec ±15.31% (28 runs sampled)
switch3,515,121 ops/sec ±13.77% (25 runs sampled)
lookup table9,019,769 ops/sec ±15.23% (31 runs sampled)
+ +> Notes: +> - Fastest is lookup table,if else + diff --git a/results/delete.md b/results/delete.md index 155b250..e5852bb 100644 --- a/results/delete.md +++ b/results/delete.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is object subscript delete + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
splice2,881,727 ops/sec ±9.45% (43 runs sampled)
object delete2,525,539 ops/sec ±9.82% (36 runs sampled)
array delete3,083,162 ops/sec ±7.69% (44 runs sampled)
object subscript delete4,119,026 ops/sec ±5.04% (52 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
splice1,961,789 ops/sec ±17.43% (26 runs sampled)
object delete1,931,213 ops/sec ±15.84% (28 runs sampled)
array delete2,525,143 ops/sec ±15.43% (28 runs sampled)
object subscript delete3,100,854 ops/sec ±11.49% (36 runs sampled)
+ > Notes: > - Fastest is object subscript delete diff --git a/results/delete_last_item.md b/results/delete_last_item.md index 9a68861..593f56c 100644 --- a/results/delete_last_item.md +++ b/results/delete_last_item.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is array pop + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
splice80,600 ops/sec ±10.78% (40 runs sampled)
splice -82,796 ops/sec ±12.42% (47 runs sampled)
splice cached106,642 ops/sec ±6.49% (58 runs sampled)
array delete120,528 ops/sec ±5.83% (63 runs sampled)
array pop176,481 ops/sec ±3.16% (77 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
splice124,216 ops/sec ±16.18% (25 runs sampled)
splice -183,785 ops/sec ±14.39% (41 runs sampled)
splice cached203,508 ops/sec ±13.10% (46 runs sampled)
array delete215,110 ops/sec ±11.93% (48 runs sampled)
array pop375,656 ops/sec ±7.79% (65 runs sampled)
+ > Notes: > - Fastest is array pop diff --git a/results/duplicate.md b/results/duplicate.md index 09f39da..d38ba8d 100644 --- a/results/duplicate.md +++ b/results/duplicate.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is eliminateDuplicates + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
filterDuplicates22,692 ops/sec ±9.06% (38 runs sampled)
eliminateDuplicates27,891 ops/sec ±9.55% (37 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
filterDuplicates16,624 ops/sec ±14.93% (26 runs sampled)
eliminateDuplicates34,317 ops/sec ±16.97% (26 runs sampled)
+ > Notes: > - Fastest is eliminateDuplicates diff --git a/results/function_call.md b/results/function_call.md index 41ed6f5..9c9437e 100644 --- a/results/function_call.md +++ b/results/function_call.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is direct + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
apply113,828 ops/sec ±7.28% (32 runs sampled)
call7,718,645 ops/sec ±10.00% (48 runs sampled)
bind232,081 ops/sec ±6.29% (56 runs sampled)
direct17,720,205 ops/sec ±5.68% (59 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
apply566,853 ops/sec ±16.41% (26 runs sampled)
call5,463,521 ops/sec ±15.63% (25 runs sampled)
bind182,237 ops/sec ±14.19% (32 runs sampled)
direct9,101,004 ops/sec ±10.75% (33 runs sampled)
+ > Notes: > - Fastest is direct diff --git a/results/inc_int.md b/results/inc_int.md index 189330f..8e09233 100644 --- a/results/inc_int.md +++ b/results/inc_int.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is inc fn,i += 1 + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is inc fn,i += 1 + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
i++18,522,277 ops/sec ±15.51% (30 runs sampled)
++i15,313,991 ops/sec ±14.59% (24 runs sampled)
i += 117,591,426 ops/sec ±14.98% (35 runs sampled)
inc fn22,979,097 ops/sec ±14.12% (38 runs sampled)
+ +> Notes: +> - Fastest is inc fn + diff --git a/results/manip_recv_buf.md b/results/manip_recv_buf.md index 80524c7..560013e 100644 --- a/results/manip_recv_buf.md +++ b/results/manip_recv_buf.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is buffer + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is string+ + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
buffer41,801 ops/sec ±20.33% (24 runs sampled)
string+32,822 ops/sec ±20.36% (26 runs sampled)
+ +> Notes: +> - Fastest is buffer,string+ + diff --git a/results/object_loop.md b/results/object_loop.md index 0271df3..cf14f14 100644 --- a/results/object_loop.md +++ b/results/object_loop.md @@ -31,6 +31,15 @@ Darwin x64 - 13.2.0
prop in Object226,247 ops/sec ±9.63% (38 runs sampled)
forEach Object#keys331,262 ops/sec ±7.89% (33 runs sampled)
for Object#keys.length1,008,996 ops/sec ±6.72% (50 runs sampled)
+Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
prop in Object173,260 ops/sec ±14.62% (29 runs sampled)
forEach Object#keys265,177 ops/sec ±14.08% (26 runs sampled)
for Object#keys.length598,904 ops/sec ±12.76% (35 runs sampled)
+ > Notes: > - Fastest is for Object#keys.length diff --git a/results/proto_vs_literal.md b/results/proto_vs_literal.md index 7fa6fd7..e918133 100644 --- a/results/proto_vs_literal.md +++ b/results/proto_vs_literal.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is prototype + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
prototype18,966,638 ops/sec ±9.67% (36 runs sampled)
literal3,804,899 ops/sec ±9.66% (38 runs sampled)
prototype 1M4.21 ops/sec ±14.21% (17 runs sampled)
literal 1M3.97 ops/sec ±11.43% (15 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
prototype5,865,289 ops/sec ±16.43% (25 runs sampled)
literal2,056,527 ops/sec ±14.97% (29 runs sampled)
prototype 1M3.11 ops/sec ±24.00% (12 runs sampled)
literal 1M2.50 ops/sec ±14.99% (11 runs sampled)
+ > Notes: > - Fastest is prototype diff --git a/results/round_num.md b/results/round_num.md index 3d05516..1dfc810 100644 --- a/results/round_num.md +++ b/results/round_num.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is modulo + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is modulo + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
Math#floor15,508,773 ops/sec ±14.67% (29 runs sampled)
parseInt8,621,232 ops/sec ±14.66% (29 runs sampled)
parseInt(a,10)11,089,023 ops/sec ±14.64% (30 runs sampled)
~~a25,700,220 ops/sec ±13.57% (41 runs sampled)
a | a38,621,387 ops/sec ±11.20% (56 runs sampled)
a | 053,300,500 ops/sec ±3.78% (77 runs sampled)
a & a50,480,976 ops/sec ±4.32% (62 runs sampled)
a << 070,954,623 ops/sec ±3.66% (85 runs sampled)
Int#toFixed3,362,564 ops/sec ±3.99% (91 runs sampled)
modulo66,543,424 ops/sec ±3.28% (86 runs sampled)
+ +> Notes: +> - Fastest is a << 0 + diff --git a/results/send_buf.md b/results/send_buf.md index aa26a00..6a1415c 100644 --- a/results/send_buf.md +++ b/results/send_buf.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is string,buffer + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is string + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
buffer59,695 ops/sec ±15.75% (32 runs sampled)
string47,642 ops/sec ±20.53% (27 runs sampled)
+ +> Notes: +> - Fastest is buffer,string + diff --git a/results/str_to_int.md b/results/str_to_int.md index d8f4737..05e65d8 100644 --- a/results/str_to_int.md +++ b/results/str_to_int.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is a ^ 0 + Darwin x64 - 13.2.0 ----- @@ -34,3 +35,16 @@ Darwin x64 - 13.2.0 > Notes: > - Fastest is Math#floor + +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
parseInt6,866,085 ops/sec ±13.70% (26 runs sampled)
parseInt(a,10)8,743,924 ops/sec ±13.95% (32 runs sampled)
Math#floor6,618,107 ops/sec ±14.00% (30 runs sampled)
+a6,462,128 ops/sec ±12.14% (36 runs sampled)
~~a11,422,895 ops/sec ±7.74% (52 runs sampled)
a | 016,014,535 ops/sec ±5.73% (65 runs sampled)
a * 116,255,316 ops/sec ±4.92% (69 runs sampled)
a / 122,254,029 ops/sec ±3.53% (79 runs sampled)
a % Infinity12,138,840 ops/sec ±2.24% (83 runs sampled)
a >> 019,542,820 ops/sec ±4.67% (80 runs sampled)
eval(a)4,255,968 ops/sec ±5.78% (81 runs sampled)
a ^ 022,728,892 ops/sec ±3.54% (92 runs sampled)
+ +> Notes: +> - Fastest is a ^ 0 + diff --git a/results/string_search.md b/results/string_search.md index 3131b44..a4e5227 100644 --- a/results/string_search.md +++ b/results/string_search.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is regex#test precompiled + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
regex#test5,056,786 ops/sec ±7.26% (33 runs sampled)
string#search3,746,382 ops/sec ±8.30% (34 runs sampled)
string#match4,031,522 ops/sec ±5.92% (48 runs sampled)
string#indexOf2,091,053 ops/sec ±5.39% (52 runs sampled)
regex#test precompiled14,678,596 ops/sec ±4.42% (78 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
regex#test3,400,780 ops/sec ±15.35% (24 runs sampled)
string#search2,317,631 ops/sec ±11.33% (21 runs sampled)
string#match1,539,402 ops/sec ±13.26% (31 runs sampled)
string#indexOf708,178 ops/sec ±12.98% (35 runs sampled)
regex#test precompiled8,051,583 ops/sec ±8.26% (49 runs sampled)
+ > Notes: > - Fastest is regex#test precompiled diff --git a/results/type_check.md b/results/type_check.md index 45f90f8..336f068 100644 --- a/results/type_check.md +++ b/results/type_check.md @@ -22,6 +22,7 @@ Linux x64 - 3.8.4-1-ARCH > Notes: > - Fastest is typeof + Darwin x64 - 13.2.0 ----- @@ -31,6 +32,16 @@ Darwin x64 - 13.2.0
typeof32,007,022 ops/sec ±10.41% (41 runs sampled)
constructor check28,079,672 ops/sec ±9.23% (40 runs sampled)
+ +Linux x64 - 3.13.0-34-generic +----- + +
nodememorycpu
v0.10.298.30 GBIntel(R) Core(TM) i5-4200M CPU @ 2.50GHz
+ +#### Benchmark Results #### + +
typeof17,918,671 ops/sec ±17.89% (28 runs sampled)
constructor check895,687 ops/sec ±13.90% (22 runs sampled)
+ > Notes: > - Fastest is typeof