├── README.md ├── gif_make.py ├── index.html ├── json ├── 2017-03-10_00-49-3.4-fa53dbdec818.json.gz ├── 2017-04-09_10-22-master-19e04942562a.json.gz ├── 2017-04-09_22-16-3.5-aa218af34494.json.gz ├── 2017-04-09_22-17-3.6-28ddd3c90583.json.gz ├── 2018-03-11_18-28-3.4-942cc04ae448.json.gz ├── 2018-03-11_18-29-3.5-937ac1fe069a.json.gz ├── 2018-03-31_21-29-master-aa8e51f5ebb2.json.gz ├── 2018-03-31_22-03-3.6-d918bbda4bb2.json.gz ├── 2018-03-31_23-41-3.7-9e96e7b24e4d.json.gz ├── pypy3-5.10.0-2.json ├── pypy3-5.10.0.json ├── pypy5.6.0.json ├── python2.7.json ├── python3.4.json ├── python3.5.json ├── python3.6.json └── python3.7.json ├── plot_results.py ├── png ├── 2to3-result.png ├── chameleon-result.png ├── chaos-result.png ├── crypto_pyaes-result.png ├── deltablue-result.png ├── django_template-result.png ├── dulwich_log-result.png ├── fannkuch-result.png ├── float-result.png ├── genshi_text-result.png ├── genshi_xml-result.png ├── go-result.png ├── hexiom-result.png ├── hg_startup-result.png ├── html5lib-result.png ├── json_dumps-result.png ├── json_loads-result.png ├── logging_format-result.png ├── logging_silent-result.png ├── logging_simple-result.png ├── mako-result.png ├── meteor_contest-result.png ├── nbody-result.png ├── nqueens-result.png ├── pathlib-result.png ├── pickle-result.png ├── pickle_dict-result.png ├── pickle_list-result.png ├── pickle_pure_python-result.png ├── pidigits-result.png ├── pyflate-result.png ├── python_startup-result.png ├── python_startup_no_site-result.png ├── raytrace-result.png ├── regex_compile-result.png ├── regex_dna-result.png ├── regex_effbot-result.png ├── regex_v8-result.png ├── richards-result.png ├── scimark_fft-result.png ├── scimark_lu-result.png ├── scimark_monte_carlo-result.png ├── scimark_sor-result.png ├── scimark_sparse_mat_mult-result.png ├── spambayes-result.png ├── spectral_norm-result.png ├── sqlalchemy_declarative-result.png ├── sqlalchemy_imperative-result.png ├── sqlite_synth-result.png ├── sympy_expand-result.png ├── sympy_integrate-result.png ├── sympy_str-result.png ├── sympy_sum-result.png ├── telco-result.png ├── unpack_sequence-result.png ├── unpickle-result.png ├── unpickle_list-result.png ├── unpickle_pure_python-result.png ├── xml_etree_generate-result.png ├── xml_etree_iterparse-result.png ├── xml_etree_parse-result.png └── xml_etree_process-result.png └── template.html /README.md: -------------------------------------------------------------------------------- 1 | # performance_testing 2 | Results from a performance test for Python runtimes 3 | -------------------------------------------------------------------------------- /gif_make.py: -------------------------------------------------------------------------------- 1 | import imageio 2 | from pathlib import Path 3 | 4 | png_path = Path('png') 5 | images = [] 6 | for filename in png_path.iterdir(): 7 | images.append(imageio.imread(filename)) 8 | imageio.mimsave('results.gif', images, duration=1) -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 |13 |
17 | | mean | 18 |median | 19 |runtime | 20 |stdev | 21 |test | 22 |
---|---|---|---|---|---|
0 | 27 |0.682487 | 28 |0.674050 | 29 |python2.7 | 30 |0.027042 | 31 |2to3 | 32 |
62 | 35 |0.665460 | 36 |0.663683 | 37 |python3.4 | 38 |0.008768 | 39 |2to3 | 40 |
121 | 43 |0.703329 | 44 |0.702177 | 45 |python3.5 | 46 |0.007762 | 47 |2to3 | 48 |
180 | 51 |0.685416 | 52 |0.684991 | 53 |python3.6 | 54 |0.011164 | 55 |2to3 | 56 |
239 | 59 |0.610601 | 60 |0.611162 | 61 |python3.7 | 62 |0.008048 | 63 |2to3 | 64 |
298 | 67 |1.551178 | 68 |1.555337 | 69 |pypy5.6.0 | 70 |0.022093 | 71 |2to3 | 72 |
359 | 75 |3.006337 | 76 |3.000594 | 77 |pypy3-5.10.0-2 | 78 |0.040812 | 79 |2to3 | 80 |
Last updated 3 mins ago
85 |92 |
96 | | mean | 97 |median | 98 |runtime | 99 |stdev | 100 |test | 101 |
---|---|---|---|---|---|
1 | 106 |0.019981 | 107 |0.019885 | 108 |python2.7 | 109 |0.000671 | 110 |chameleon | 111 |
63 | 114 |0.020003 | 115 |0.019945 | 116 |python3.4 | 117 |0.000492 | 118 |chameleon | 119 |
122 | 122 |0.021989 | 123 |0.021949 | 124 |python3.5 | 125 |0.000347 | 126 |chameleon | 127 |
181 | 130 |0.022579 | 131 |0.022506 | 132 |python3.6 | 133 |0.001030 | 134 |chameleon | 135 |
240 | 138 |0.020495 | 139 |0.020503 | 140 |python3.7 | 141 |0.000593 | 142 |chameleon | 143 |
299 | 146 |0.007013 | 147 |0.006988 | 148 |pypy5.6.0 | 149 |0.000129 | 150 |chameleon | 151 |
360 | 154 |0.007526 | 155 |0.007511 | 156 |pypy3-5.10.0-2 | 157 |0.000212 | 158 |chameleon | 159 |
Last updated 3 mins ago
164 |171 |
175 | | mean | 176 |median | 177 |runtime | 178 |stdev | 179 |test | 180 |
---|---|---|---|---|---|
2 | 185 |0.210581 | 186 |0.210146 | 187 |python2.7 | 188 |0.002969 | 189 |chaos | 190 |
64 | 193 |0.251732 | 194 |0.250790 | 195 |python3.4 | 196 |0.005426 | 197 |chaos | 198 |
123 | 201 |0.262840 | 202 |0.262661 | 203 |python3.5 | 204 |0.004013 | 205 |chaos | 206 |
182 | 209 |0.262199 | 210 |0.262777 | 211 |python3.6 | 212 |0.005134 | 213 |chaos | 214 |
241 | 217 |0.230313 | 218 |0.228701 | 219 |python3.7 | 220 |0.010575 | 221 |chaos | 222 |
300 | 225 |0.005520 | 226 |0.005514 | 227 |pypy5.6.0 | 228 |0.000168 | 229 |chaos | 230 |
361 | 233 |0.008554 | 234 |0.008583 | 235 |pypy3-5.10.0-2 | 236 |0.000510 | 237 |chaos | 238 |
Last updated 3 mins ago
243 |250 |
254 | | mean | 255 |median | 256 |runtime | 257 |stdev | 258 |test | 259 |
---|---|---|---|---|---|
3 | 264 |0.158888 | 265 |0.158553 | 266 |python2.7 | 267 |0.003169 | 268 |crypto_pyaes | 269 |
65 | 272 |0.225684 | 273 |0.225500 | 274 |python3.4 | 275 |0.003636 | 276 |crypto_pyaes | 277 |
124 | 280 |0.237238 | 281 |0.236153 | 282 |python3.5 | 283 |0.005859 | 284 |crypto_pyaes | 285 |
183 | 288 |0.225771 | 289 |0.224022 | 290 |python3.6 | 291 |0.008850 | 292 |crypto_pyaes | 293 |
242 | 296 |0.214442 | 297 |0.214487 | 298 |python3.7 | 299 |0.004107 | 300 |crypto_pyaes | 301 |
301 | 304 |0.011664 | 305 |0.011657 | 306 |pypy5.6.0 | 307 |0.000227 | 308 |crypto_pyaes | 309 |
362 | 312 |0.068043 | 313 |0.068143 | 314 |pypy3-5.10.0-2 | 315 |0.001866 | 316 |crypto_pyaes | 317 |
Last updated 3 mins ago
322 |329 |
333 | | mean | 334 |median | 335 |runtime | 336 |stdev | 337 |test | 338 |
---|---|---|---|---|---|
4 | 343 |0.016997 | 344 |0.016954 | 345 |python2.7 | 346 |0.000417 | 347 |deltablue | 348 |
66 | 351 |0.015169 | 352 |0.014969 | 353 |python3.4 | 354 |0.000599 | 355 |deltablue | 356 |
125 | 359 |0.016260 | 360 |0.016214 | 361 |python3.5 | 362 |0.000363 | 363 |deltablue | 364 |
184 | 367 |0.017823 | 368 |0.017768 | 369 |python3.6 | 370 |0.000513 | 371 |deltablue | 372 |
243 | 375 |0.015222 | 376 |0.015208 | 377 |python3.7 | 378 |0.000642 | 379 |deltablue | 380 |
302 | 383 |0.000376 | 384 |0.000374 | 385 |pypy5.6.0 | 386 |0.000011 | 387 |deltablue | 388 |
363 | 391 |0.000543 | 392 |0.000544 | 393 |pypy3-5.10.0-2 | 394 |0.000016 | 395 |deltablue | 396 |
Last updated 3 mins ago
401 |408 |
412 | | mean | 413 |median | 414 |runtime | 415 |stdev | 416 |test | 417 |
---|---|---|---|---|---|
5 | 422 |0.287013 | 423 |0.286258 | 424 |python2.7 | 425 |0.004730 | 426 |django_template | 427 |
67 | 430 |0.293768 | 431 |0.292046 | 432 |python3.4 | 433 |0.006074 | 434 |django_template | 435 |
126 | 438 |0.305060 | 439 |0.304453 | 440 |python3.5 | 441 |0.004476 | 442 |django_template | 443 |
185 | 446 |0.312107 | 447 |0.311306 | 448 |python3.6 | 449 |0.014250 | 450 |django_template | 451 |
244 | 454 |0.240790 | 455 |0.239473 | 456 |python3.7 | 457 |0.007584 | 458 |django_template | 459 |
303 | 462 |0.026693 | 463 |0.026800 | 464 |pypy5.6.0 | 465 |0.000910 | 466 |django_template | 467 |
364 | 470 |0.054163 | 471 |0.053421 | 472 |pypy3-5.10.0-2 | 473 |0.002746 | 474 |django_template | 475 |
Last updated 3 mins ago
480 |487 |
491 | | mean | 492 |median | 493 |runtime | 494 |stdev | 495 |test | 496 |
---|---|---|---|---|---|
6 | 501 |0.146943 | 502 |0.146686 | 503 |python2.7 | 504 |0.002452 | 505 |dulwich_log | 506 |
68 | 509 |0.137754 | 510 |0.137644 | 511 |python3.4 | 512 |0.002424 | 513 |dulwich_log | 514 |
127 | 517 |0.141278 | 518 |0.141076 | 519 |python3.5 | 520 |0.002411 | 521 |dulwich_log | 522 |
186 | 525 |0.141700 | 526 |0.141846 | 527 |python3.6 | 528 |0.003539 | 529 |dulwich_log | 530 |
245 | 533 |0.134199 | 534 |0.134141 | 535 |python3.7 | 536 |0.004032 | 537 |dulwich_log | 538 |
304 | 541 |0.088988 | 542 |0.091778 | 543 |pypy5.6.0 | 544 |0.006795 | 545 |dulwich_log | 546 |
365 | 549 |0.114249 | 550 |0.112119 | 551 |pypy3-5.10.0-2 | 552 |0.005676 | 553 |dulwich_log | 554 |
Last updated 3 mins ago
559 |566 |
570 | | mean | 571 |median | 572 |runtime | 573 |stdev | 574 |test | 575 |
---|---|---|---|---|---|
7 | 580 |1.072190 | 581 |1.069646 | 582 |python2.7 | 583 |0.016575 | 584 |fannkuch | 585 |
69 | 588 |1.179287 | 589 |1.179472 | 590 |python3.4 | 591 |0.013059 | 592 |fannkuch | 593 |
128 | 596 |1.230629 | 597 |1.228166 | 598 |python3.5 | 599 |0.015051 | 600 |fannkuch | 601 |
187 | 604 |0.998279 | 605 |0.991910 | 606 |python3.6 | 607 |0.025066 | 608 |fannkuch | 609 |
246 | 612 |0.927640 | 613 |0.922895 | 614 |python3.7 | 615 |0.019632 | 616 |fannkuch | 617 |
305 | 620 |0.124523 | 621 |0.124309 | 622 |pypy5.6.0 | 623 |0.002255 | 624 |fannkuch | 625 |
366 | 628 |0.131086 | 629 |0.130895 | 630 |pypy3-5.10.0-2 | 631 |0.003867 | 632 |fannkuch | 633 |
Last updated 3 mins ago
638 |645 |
649 | | mean | 650 |median | 651 |runtime | 652 |stdev | 653 |test | 654 |
---|---|---|---|---|---|
8 | 659 |0.231138 | 660 |0.230653 | 661 |python2.7 | 662 |0.004023 | 663 |float | 664 |
70 | 667 |0.229754 | 668 |0.228467 | 669 |python3.4 | 670 |0.006730 | 671 |float | 672 |
129 | 675 |0.238387 | 676 |0.238055 | 677 |python3.5 | 678 |0.002888 | 679 |float | 680 |
188 | 683 |0.233505 | 684 |0.233635 | 685 |python3.6 | 686 |0.006963 | 687 |float | 688 |
247 | 691 |0.207521 | 692 |0.208554 | 693 |python3.7 | 694 |0.004256 | 695 |float | 696 |
306 | 699 |0.026125 | 700 |0.025908 | 701 |pypy5.6.0 | 702 |0.001123 | 703 |float | 704 |
367 | 707 |0.030768 | 708 |0.030533 | 709 |pypy3-5.10.0-2 | 710 |0.001934 | 711 |float | 712 |
Last updated 3 mins ago
717 |724 |
728 | | mean | 729 |median | 730 |runtime | 731 |stdev | 732 |test | 733 |
---|---|---|---|---|---|
9 | 738 |0.061512 | 739 |0.061408 | 740 |python2.7 | 741 |0.001266 | 742 |genshi_text | 743 |
71 | 746 |0.065340 | 747 |0.064974 | 748 |python3.4 | 749 |0.001663 | 750 |genshi_text | 751 |
130 | 754 |0.068010 | 755 |0.067561 | 756 |python3.5 | 757 |0.002388 | 758 |genshi_text | 759 |
189 | 762 |0.063812 | 763 |0.063959 | 764 |python3.6 | 765 |0.001648 | 766 |genshi_text | 767 |
248 | 770 |0.058722 | 771 |0.058774 | 772 |python3.7 | 773 |0.001926 | 774 |genshi_text | 775 |
307 | 778 |0.016478 | 779 |0.016515 | 780 |pypy5.6.0 | 781 |0.000396 | 782 |genshi_text | 783 |
368 | 786 |0.035749 | 787 |0.033788 | 788 |pypy3-5.10.0-2 | 789 |0.004850 | 790 |genshi_text | 791 |
Last updated 3 mins ago
796 |803 |
807 | | mean | 808 |median | 809 |runtime | 810 |stdev | 811 |test | 812 |
---|---|---|---|---|---|
10 | 817 |0.135422 | 818 |0.135248 | 819 |python2.7 | 820 |0.003890 | 821 |genshi_xml | 822 |
72 | 825 |0.134131 | 826 |0.133847 | 827 |python3.4 | 828 |0.003111 | 829 |genshi_xml | 830 |
131 | 833 |0.142012 | 834 |0.141682 | 835 |python3.5 | 836 |0.003338 | 837 |genshi_xml | 838 |
190 | 841 |0.148345 | 842 |0.144378 | 843 |python3.6 | 844 |0.012261 | 845 |genshi_xml | 846 |
249 | 849 |0.126241 | 850 |0.125901 | 851 |python3.7 | 852 |0.003390 | 853 |genshi_xml | 854 |
308 | 857 |0.052990 | 858 |0.050747 | 859 |pypy5.6.0 | 860 |0.004640 | 861 |genshi_xml | 862 |
369 | 865 |0.048159 | 866 |0.045377 | 867 |pypy3-5.10.0-2 | 868 |0.004398 | 869 |genshi_xml | 870 |
Last updated 3 mins ago
875 |882 |
886 | | mean | 887 |median | 888 |runtime | 889 |stdev | 890 |test | 891 |
---|---|---|---|---|---|
11 | 896 |0.438093 | 897 |0.437936 | 898 |python2.7 | 899 |0.004463 | 900 |go | 901 |
73 | 904 |0.503798 | 905 |0.501781 | 906 |python3.4 | 907 |0.011097 | 908 |go | 909 |
132 | 912 |0.528445 | 913 |0.528624 | 914 |python3.5 | 915 |0.008632 | 916 |go | 917 |
191 | 920 |0.596623 | 921 |0.596957 | 922 |python3.6 | 923 |0.038428 | 924 |go | 925 |
250 | 928 |0.503478 | 929 |0.503589 | 930 |python3.7 | 931 |0.009041 | 932 |go | 933 |
309 | 936 |0.126904 | 937 |0.125047 | 938 |pypy5.6.0 | 939 |0.006767 | 940 |go | 941 |
370 | 944 |0.097254 | 945 |0.096034 | 946 |pypy3-5.10.0-2 | 947 |0.004160 | 948 |go | 949 |
Last updated 3 mins ago
954 |961 |
965 | | mean | 966 |median | 967 |runtime | 968 |stdev | 969 |test | 970 |
---|---|---|---|---|---|
12 | 975 |0.018674 | 976 |0.018580 | 977 |python2.7 | 978 |0.000601 | 979 |hexiom | 980 |
74 | 983 |0.021517 | 984 |0.021471 | 985 |python3.4 | 986 |0.000347 | 987 |hexiom | 988 |
133 | 991 |0.023327 | 992 |0.023222 | 993 |python3.5 | 994 |0.000375 | 995 |hexiom | 996 |
192 | 999 |0.023378 | 1000 |0.023428 | 1001 |python3.6 | 1002 |0.000847 | 1003 |hexiom | 1004 |
251 | 1007 |0.020296 | 1008 |0.020246 | 1009 |python3.7 | 1010 |0.000473 | 1011 |hexiom | 1012 |
310 | 1015 |0.001916 | 1016 |0.001890 | 1017 |pypy5.6.0 | 1018 |0.000092 | 1019 |hexiom | 1020 |
371 | 1023 |0.002191 | 1024 |0.002158 | 1025 |pypy3-5.10.0-2 | 1026 |0.000098 | 1027 |hexiom | 1028 |
Last updated 3 mins ago
1033 |1040 |
1044 | | mean | 1045 |median | 1046 |runtime | 1047 |stdev | 1048 |test | 1049 |
---|---|---|---|---|---|
13 | 1054 |0.109802 | 1055 |0.109033 | 1056 |python2.7 | 1057 |0.003917 | 1058 |hg_startup | 1059 |
311 | 1062 |0.202022 | 1063 |0.201516 | 1064 |pypy5.6.0 | 1065 |0.003039 | 1066 |hg_startup | 1067 |
Last updated 3 mins ago
1072 |1079 |
1083 | | mean | 1084 |median | 1085 |runtime | 1086 |stdev | 1087 |test | 1088 |
---|---|---|---|---|---|
14 | 1093 |0.223119 | 1094 |0.219770 | 1095 |python2.7 | 1096 |0.007760 | 1097 |html5lib | 1098 |
75 | 1101 |0.236478 | 1102 |0.233034 | 1103 |python3.4 | 1104 |0.010535 | 1105 |html5lib | 1106 |
134 | 1109 |0.199212 | 1110 |0.196792 | 1111 |python3.5 | 1112 |0.009597 | 1113 |html5lib | 1114 |
193 | 1117 |0.193119 | 1118 |0.191058 | 1119 |python3.6 | 1120 |0.009874 | 1121 |html5lib | 1122 |
252 | 1125 |0.170205 | 1126 |0.167318 | 1127 |python3.7 | 1128 |0.010354 | 1129 |html5lib | 1130 |
312 | 1133 |0.044158 | 1134 |0.043893 | 1135 |pypy5.6.0 | 1136 |0.001836 | 1137 |html5lib | 1138 |
372 | 1141 |0.048360 | 1142 |0.048704 | 1143 |pypy3-5.10.0-2 | 1144 |0.002813 | 1145 |html5lib | 1146 |
Last updated 3 mins ago
1151 |1158 |
1162 | | mean | 1163 |median | 1164 |runtime | 1165 |stdev | 1166 |test | 1167 |
---|---|---|---|---|---|
15 | 1172 |0.022402 | 1173 |0.022383 | 1174 |python2.7 | 1175 |0.000379 | 1176 |json_dumps | 1177 |
76 | 1180 |0.026684 | 1181 |0.026406 | 1182 |python3.4 | 1183 |0.001091 | 1184 |json_dumps | 1185 |
135 | 1188 |0.027532 | 1189 |0.027353 | 1190 |python3.5 | 1191 |0.000743 | 1192 |json_dumps | 1193 |
194 | 1196 |0.025568 | 1197 |0.025533 | 1198 |python3.6 | 1199 |0.000963 | 1200 |json_dumps | 1201 |
253 | 1204 |0.024153 | 1205 |0.023952 | 1206 |python3.7 | 1207 |0.001129 | 1208 |json_dumps | 1209 |
313 | 1212 |0.006206 | 1213 |0.006168 | 1214 |pypy5.6.0 | 1215 |0.000148 | 1216 |json_dumps | 1217 |
373 | 1220 |0.061090 | 1221 |0.061269 | 1222 |pypy3-5.10.0-2 | 1223 |0.002754 | 1224 |json_dumps | 1225 |
Last updated 3 mins ago
1230 |1237 |
1241 | | mean | 1242 |median | 1243 |runtime | 1244 |stdev | 1245 |test | 1246 |
---|---|---|---|---|---|
16 | 1251 |0.000096 | 1252 |0.000095 | 1253 |python2.7 | 1254 |2.142491e-06 | 1255 |json_loads | 1256 |
77 | 1259 |0.000050 | 1260 |0.000049 | 1261 |python3.4 | 1262 |9.726041e-07 | 1263 |json_loads | 1264 |
136 | 1267 |0.000052 | 1268 |0.000051 | 1269 |python3.5 | 1270 |8.577042e-07 | 1271 |json_loads | 1272 |
195 | 1275 |0.000054 | 1276 |0.000054 | 1277 |python3.6 | 1278 |1.587672e-06 | 1279 |json_loads | 1280 |
254 | 1283 |0.000056 | 1284 |0.000056 | 1285 |python3.7 | 1286 |2.230938e-06 | 1287 |json_loads | 1288 |
314 | 1291 |0.000021 | 1292 |0.000021 | 1293 |pypy5.6.0 | 1294 |1.464237e-06 | 1295 |json_loads | 1296 |
374 | 1299 |0.000024 | 1300 |0.000024 | 1301 |pypy3-5.10.0-2 | 1302 |1.330137e-06 | 1303 |json_loads | 1304 |
Last updated 3 mins ago
1309 |1316 |
1320 | | mean | 1321 |median | 1322 |runtime | 1323 |stdev | 1324 |test | 1325 |
---|---|---|---|---|---|
17 | 1330 |0.000023 | 1331 |0.000023 | 1332 |python2.7 | 1333 |5.041859e-07 | 1334 |logging_format | 1335 |
78 | 1338 |0.000024 | 1339 |0.000024 | 1340 |python3.4 | 1341 |5.360192e-07 | 1342 |logging_format | 1343 |
137 | 1346 |0.000024 | 1347 |0.000024 | 1348 |python3.5 | 1349 |6.647403e-07 | 1350 |logging_format | 1351 |
196 | 1354 |0.000030 | 1355 |0.000029 | 1356 |python3.6 | 1357 |1.045321e-06 | 1358 |logging_format | 1359 |
255 | 1362 |0.000020 | 1363 |0.000020 | 1364 |python3.7 | 1365 |6.717268e-07 | 1366 |logging_format | 1367 |
315 | 1370 |0.000004 | 1371 |0.000004 | 1372 |pypy5.6.0 | 1373 |1.391913e-07 | 1374 |logging_format | 1375 |
375 | 1378 |0.000006 | 1379 |0.000006 | 1380 |pypy3-5.10.0-2 | 1381 |3.366281e-07 | 1382 |logging_format | 1383 |
Last updated 3 mins ago
1388 |1395 |
1399 | | mean | 1400 |median | 1401 |runtime | 1402 |stdev | 1403 |test | 1404 |
---|---|---|---|---|---|
18 | 1409 |5.721808e-07 | 1410 |5.707763e-07 | 1411 |python2.7 | 1412 |8.764538e-09 | 1413 |logging_silent | 1414 |
79 | 1417 |7.146708e-07 | 1418 |7.117163e-07 | 1419 |python3.4 | 1420 |2.033406e-08 | 1421 |logging_silent | 1422 |
138 | 1425 |7.819009e-07 | 1426 |7.823692e-07 | 1427 |python3.5 | 1428 |1.958160e-08 | 1429 |logging_silent | 1430 |
197 | 1433 |7.521978e-07 | 1434 |7.524611e-07 | 1435 |python3.6 | 1436 |2.951718e-08 | 1437 |logging_silent | 1438 |
256 | 1441 |3.779469e-07 | 1442 |3.769473e-07 | 1443 |python3.7 | 1444 |1.544327e-08 | 1445 |logging_silent | 1446 |
316 | 1449 |1.511038e-10 | 1450 |1.499261e-10 | 1451 |pypy5.6.0 | 1452 |3.167391e-12 | 1453 |logging_silent | 1454 |
376 | 1457 |1.565249e-10 | 1458 |1.560433e-10 | 1459 |pypy3-5.10.0-2 | 1460 |3.902059e-12 | 1461 |logging_silent | 1462 |
Last updated 3 mins ago
1467 |1474 |
1478 | | mean | 1479 |median | 1480 |runtime | 1481 |stdev | 1482 |test | 1483 |
---|---|---|---|---|---|
19 | 1488 |0.000020 | 1489 |0.000020 | 1490 |python2.7 | 1491 |4.824368e-07 | 1492 |logging_simple | 1493 |
80 | 1496 |0.000020 | 1497 |0.000020 | 1498 |python3.4 | 1499 |4.305177e-07 | 1500 |logging_simple | 1501 |
139 | 1504 |0.000020 | 1505 |0.000020 | 1506 |python3.5 | 1507 |5.257946e-07 | 1508 |logging_simple | 1509 |
198 | 1512 |0.000021 | 1513 |0.000021 | 1514 |python3.6 | 1515 |5.592203e-07 | 1516 |logging_simple | 1517 |
257 | 1520 |0.000018 | 1521 |0.000018 | 1522 |python3.7 | 1523 |4.590299e-07 | 1524 |logging_simple | 1525 |
317 | 1528 |0.000003 | 1529 |0.000003 | 1530 |pypy5.6.0 | 1531 |1.194045e-07 | 1532 |logging_simple | 1533 |
377 | 1536 |0.000005 | 1537 |0.000005 | 1538 |pypy3-5.10.0-2 | 1539 |1.706615e-07 | 1540 |logging_simple | 1541 |
Last updated 3 mins ago
1546 |1553 |
1557 | | mean | 1558 |median | 1559 |runtime | 1560 |stdev | 1561 |test | 1562 |
---|---|---|---|---|---|
20 | 1567 |0.053565 | 1568 |0.053281 | 1569 |python2.7 | 1570 |0.001188 | 1571 |mako | 1572 |
81 | 1575 |0.035504 | 1576 |0.035451 | 1577 |python3.4 | 1578 |0.000630 | 1579 |mako | 1580 |
140 | 1583 |0.039377 | 1584 |0.039043 | 1585 |python3.5 | 1586 |0.001824 | 1587 |mako | 1588 |
199 | 1591 |0.044321 | 1592 |0.044267 | 1593 |python3.6 | 1594 |0.001233 | 1595 |mako | 1596 |
258 | 1599 |0.038644 | 1600 |0.038508 | 1601 |python3.7 | 1602 |0.001304 | 1603 |mako | 1604 |
318 | 1607 |0.017879 | 1608 |0.017547 | 1609 |pypy5.6.0 | 1610 |0.001764 | 1611 |mako | 1612 |
378 | 1615 |0.017270 | 1616 |0.017366 | 1617 |pypy3-5.10.0-2 | 1618 |0.001459 | 1619 |mako | 1620 |
Last updated 3 mins ago
1625 |1632 |
1636 | | mean | 1637 |median | 1638 |runtime | 1639 |stdev | 1640 |test | 1641 |
---|---|---|---|---|---|
21 | 1646 |0.197238 | 1647 |0.196515 | 1648 |python2.7 | 1649 |0.002806 | 1650 |meteor_contest | 1651 |
82 | 1654 |0.188973 | 1655 |0.188213 | 1656 |python3.4 | 1657 |0.005273 | 1658 |meteor_contest | 1659 |
141 | 1662 |0.196532 | 1663 |0.195830 | 1664 |python3.5 | 1665 |0.004034 | 1666 |meteor_contest | 1667 |
200 | 1670 |0.193251 | 1671 |0.192973 | 1672 |python3.6 | 1673 |0.004212 | 1674 |meteor_contest | 1675 |
259 | 1678 |0.177932 | 1679 |0.177507 | 1680 |python3.7 | 1681 |0.004648 | 1682 |meteor_contest | 1683 |
319 | 1686 |0.062258 | 1687 |0.061521 | 1688 |pypy5.6.0 | 1689 |0.002559 | 1690 |meteor_contest | 1691 |
379 | 1694 |0.072634 | 1695 |0.072163 | 1696 |pypy3-5.10.0-2 | 1697 |0.003210 | 1698 |meteor_contest | 1699 |
Last updated 3 mins ago
1704 |1711 |
1715 | | mean | 1716 |median | 1717 |runtime | 1718 |stdev | 1719 |test | 1720 |
---|---|---|---|---|---|
22 | 1725 |0.258446 | 1726 |0.257724 | 1727 |python2.7 | 1728 |0.004359 | 1729 |nbody | 1730 |
83 | 1733 |0.244963 | 1734 |0.244573 | 1735 |python3.4 | 1736 |0.003433 | 1737 |nbody | 1738 |
142 | 1741 |0.253272 | 1742 |0.252683 | 1743 |python3.5 | 1744 |0.003631 | 1745 |nbody | 1746 |
201 | 1749 |0.240976 | 1750 |0.240476 | 1751 |python3.6 | 1752 |0.006007 | 1753 |nbody | 1754 |
260 | 1757 |0.231209 | 1758 |0.231521 | 1759 |python3.7 | 1760 |0.004867 | 1761 |nbody | 1762 |
320 | 1765 |0.019013 | 1766 |0.018955 | 1767 |pypy5.6.0 | 1768 |0.000350 | 1769 |nbody | 1770 |
380 | 1773 |0.019531 | 1774 |0.019493 | 1775 |pypy3-5.10.0-2 | 1776 |0.000785 | 1777 |nbody | 1778 |
Last updated 3 mins ago
1783 |1790 |
1794 | | mean | 1795 |median | 1796 |runtime | 1797 |stdev | 1798 |test | 1799 |
---|---|---|---|---|---|
23 | 1804 |0.203355 | 1805 |0.203260 | 1806 |python2.7 | 1807 |0.003275 | 1808 |nqueens | 1809 |
84 | 1812 |0.219832 | 1813 |0.219828 | 1814 |python3.4 | 1815 |0.002557 | 1816 |nqueens | 1817 |
143 | 1820 |0.237268 | 1821 |0.236771 | 1822 |python3.5 | 1823 |0.003845 | 1824 |nqueens | 1825 |
202 | 1828 |0.210485 | 1829 |0.210330 | 1830 |python3.6 | 1831 |0.004765 | 1832 |nqueens | 1833 |
261 | 1836 |0.187005 | 1837 |0.185901 | 1838 |python3.7 | 1839 |0.005355 | 1840 |nqueens | 1841 |
321 | 1844 |0.031738 | 1845 |0.031516 | 1846 |pypy5.6.0 | 1847 |0.001199 | 1848 |nqueens | 1849 |
381 | 1852 |0.033367 | 1853 |0.033367 | 1854 |pypy3-5.10.0-2 | 1855 |0.000769 | 1856 |nqueens | 1857 |
Last updated 3 mins ago
1862 |1869 |
1873 | | mean | 1874 |median | 1875 |runtime | 1876 |stdev | 1877 |test | 1878 |
---|---|---|---|---|---|
24 | 1883 |0.075571 | 1884 |0.075389 | 1885 |python2.7 | 1886 |0.001968 | 1887 |pathlib | 1888 |
85 | 1891 |0.072467 | 1892 |0.072104 | 1893 |python3.4 | 1894 |0.001523 | 1895 |pathlib | 1896 |
144 | 1899 |0.073859 | 1900 |0.073767 | 1901 |python3.5 | 1902 |0.001413 | 1903 |pathlib | 1904 |
203 | 1907 |0.077384 | 1908 |0.076583 | 1909 |python3.6 | 1910 |0.004110 | 1911 |pathlib | 1912 |
262 | 1915 |0.077049 | 1916 |0.076772 | 1917 |python3.7 | 1918 |0.001859 | 1919 |pathlib | 1920 |
322 | 1923 |0.053448 | 1924 |0.049631 | 1925 |pypy5.6.0 | 1926 |0.005783 | 1927 |pathlib | 1928 |
382 | 1931 |0.045983 | 1932 |0.045524 | 1933 |pypy3-5.10.0-2 | 1934 |0.001595 | 1935 |pathlib | 1936 |
Last updated 3 mins ago
1941 |1948 |
1952 | | mean | 1953 |median | 1954 |runtime | 1955 |stdev | 1956 |test | 1957 |
---|---|---|---|---|---|
25 | 1962 |0.000035 | 1963 |0.000035 | 1964 |python2.7 | 1965 |5.920261e-07 | 1966 |pickle | 1967 |
86 | 1970 |0.000018 | 1971 |0.000018 | 1972 |python3.4 | 1973 |5.049013e-07 | 1974 |pickle | 1975 |
145 | 1978 |0.000021 | 1979 |0.000020 | 1980 |python3.5 | 1981 |5.071255e-07 | 1982 |pickle | 1983 |
204 | 1986 |0.000019 | 1987 |0.000019 | 1988 |python3.6 | 1989 |6.736503e-07 | 1990 |pickle | 1991 |
263 | 1994 |0.000021 | 1995 |0.000021 | 1996 |python3.7 | 1997 |1.425687e-06 | 1998 |pickle | 1999 |
323 | 2002 |0.000068 | 2003 |0.000068 | 2004 |pypy5.6.0 | 2005 |2.304668e-06 | 2006 |pickle | 2007 |
Last updated 3 mins ago
2012 |2019 |
2023 | | mean | 2024 |median | 2025 |runtime | 2026 |stdev | 2027 |test | 2028 |
---|---|---|---|---|---|
26 | 2033 |0.000059 | 2034 |0.000058 | 2035 |python2.7 | 2036 |1.619369e-06 | 2037 |pickle_dict | 2038 |
87 | 2041 |0.000044 | 2042 |0.000044 | 2043 |python3.4 | 2044 |8.170439e-07 | 2045 |pickle_dict | 2046 |
146 | 2049 |0.000055 | 2050 |0.000055 | 2051 |python3.5 | 2052 |9.402324e-07 | 2053 |pickle_dict | 2054 |
205 | 2057 |0.000054 | 2058 |0.000054 | 2059 |python3.6 | 2060 |1.683318e-06 | 2061 |pickle_dict | 2062 |
264 | 2065 |0.000055 | 2066 |0.000055 | 2067 |python3.7 | 2068 |1.524467e-06 | 2069 |pickle_dict | 2070 |
324 | 2073 |0.000258 | 2074 |0.000257 | 2075 |pypy5.6.0 | 2076 |7.729661e-06 | 2077 |pickle_dict | 2078 |
Last updated 3 mins ago
2083 |2090 |
2094 | | mean | 2095 |median | 2096 |runtime | 2097 |stdev | 2098 |test | 2099 |
---|---|---|---|---|---|
27 | 2104 |0.000013 | 2105 |0.000012 | 2106 |python2.7 | 2107 |3.048212e-07 | 2108 |pickle_list | 2109 |
88 | 2112 |0.000007 | 2113 |0.000007 | 2114 |python3.4 | 2115 |2.161716e-07 | 2116 |pickle_list | 2117 |
147 | 2120 |0.000008 | 2121 |0.000008 | 2122 |python3.5 | 2123 |1.449770e-07 | 2124 |pickle_list | 2125 |
206 | 2128 |0.000008 | 2129 |0.000007 | 2130 |python3.6 | 2131 |1.636611e-07 | 2132 |pickle_list | 2133 |
265 | 2136 |0.000008 | 2137 |0.000008 | 2138 |python3.7 | 2139 |2.256034e-07 | 2140 |pickle_list | 2141 |
325 | 2144 |0.000036 | 2145 |0.000036 | 2146 |pypy5.6.0 | 2147 |1.546581e-06 | 2148 |pickle_list | 2149 |
Last updated 3 mins ago
2154 |2161 |
2165 | | mean | 2166 |median | 2167 |runtime | 2168 |stdev | 2169 |test | 2170 |
---|---|---|---|---|---|
28 | 2175 |0.000817 | 2176 |0.000818 | 2177 |python2.7 | 2178 |0.000014 | 2179 |pickle_pure_python | 2180 |
89 | 2183 |0.000944 | 2184 |0.000945 | 2185 |python3.4 | 2186 |0.000020 | 2187 |pickle_pure_python | 2188 |
148 | 2191 |0.001004 | 2192 |0.000997 | 2193 |python3.5 | 2194 |0.000024 | 2195 |pickle_pure_python | 2196 |
207 | 2199 |0.001101 | 2200 |0.001098 | 2201 |python3.6 | 2202 |0.000037 | 2203 |pickle_pure_python | 2204 |
266 | 2207 |0.000936 | 2208 |0.000936 | 2209 |python3.7 | 2210 |0.000027 | 2211 |pickle_pure_python | 2212 |
326 | 2215 |0.000055 | 2216 |0.000054 | 2217 |pypy5.6.0 | 2218 |0.000003 | 2219 |pickle_pure_python | 2220 |
383 | 2223 |0.000106 | 2224 |0.000104 | 2225 |pypy3-5.10.0-2 | 2226 |0.000005 | 2227 |pickle_pure_python | 2228 |
Last updated 3 mins ago
2233 |2240 |
2244 | | mean | 2245 |median | 2246 |runtime | 2247 |stdev | 2248 |test | 2249 |
---|---|---|---|---|---|
29 | 2254 |0.256225 | 2255 |0.256489 | 2256 |python2.7 | 2257 |0.003230 | 2258 |pidigits | 2259 |
90 | 2262 |0.252651 | 2263 |0.252335 | 2264 |python3.4 | 2265 |0.005128 | 2266 |pidigits | 2267 |
149 | 2270 |0.254847 | 2271 |0.254104 | 2272 |python3.5 | 2273 |0.005121 | 2274 |pidigits | 2275 |
208 | 2278 |0.262440 | 2279 |0.262409 | 2280 |python3.6 | 2281 |0.006980 | 2282 |pidigits | 2283 |
267 | 2286 |0.266935 | 2287 |0.266277 | 2288 |python3.7 | 2289 |0.005556 | 2290 |pidigits | 2291 |
327 | 2294 |0.181568 | 2295 |0.181804 | 2296 |pypy5.6.0 | 2297 |0.003687 | 2298 |pidigits | 2299 |
384 | 2302 |0.192938 | 2303 |0.192998 | 2304 |pypy3-5.10.0-2 | 2305 |0.006194 | 2306 |pidigits | 2307 |
Last updated 3 mins ago
2312 |2319 |
2323 | | mean | 2324 |median | 2325 |runtime | 2326 |stdev | 2327 |test | 2328 |
---|---|---|---|---|---|
30 | 2333 |1.220629 | 2334 |1.216563 | 2335 |python2.7 | 2336 |0.022814 | 2337 |pyflate | 2338 |
328 | 2341 |0.263680 | 2342 |0.260996 | 2343 |pypy5.6.0 | 2344 |0.009391 | 2345 |pyflate | 2346 |
Last updated 3 mins ago
2351 |2358 |
2362 | | mean | 2363 |median | 2364 |runtime | 2365 |stdev | 2366 |test | 2367 |
---|---|---|---|---|---|
31 | 2372 |0.016861 | 2373 |0.016766 | 2374 |python2.7 | 2375 |0.000437 | 2376 |python_startup | 2377 |
91 | 2380 |0.034951 | 2381 |0.034698 | 2382 |python3.4 | 2383 |0.001338 | 2384 |python_startup | 2385 |
150 | 2388 |0.035659 | 2389 |0.035584 | 2390 |python3.5 | 2391 |0.000700 | 2392 |python_startup | 2393 |
209 | 2396 |0.028463 | 2397 |0.028440 | 2398 |python3.6 | 2399 |0.000852 | 2400 |python_startup | 2401 |
268 | 2404 |0.023507 | 2405 |0.023609 | 2406 |python3.7 | 2407 |0.000636 | 2408 |python_startup | 2409 |
329 | 2412 |0.030627 | 2413 |0.030548 | 2414 |pypy5.6.0 | 2415 |0.000461 | 2416 |python_startup | 2417 |
385 | 2420 |0.060832 | 2421 |0.060917 | 2422 |pypy3-5.10.0-2 | 2423 |0.001095 | 2424 |python_startup | 2425 |
Last updated 3 mins ago
2430 |2437 |
2441 | | mean | 2442 |median | 2443 |runtime | 2444 |stdev | 2445 |test | 2446 |
---|---|---|---|---|---|
32 | 2451 |0.011625 | 2452 |0.011572 | 2453 |python2.7 | 2454 |0.000210 | 2455 |python_startup_no_site | 2456 |
92 | 2459 |0.024503 | 2460 |0.024376 | 2461 |python3.4 | 2462 |0.000574 | 2463 |python_startup_no_site | 2464 |
151 | 2467 |0.025142 | 2468 |0.025082 | 2469 |python3.5 | 2470 |0.000518 | 2471 |python_startup_no_site | 2472 |
210 | 2475 |0.022383 | 2476 |0.022305 | 2477 |python3.6 | 2478 |0.000718 | 2479 |python_startup_no_site | 2480 |
269 | 2483 |0.018551 | 2484 |0.018470 | 2485 |python3.7 | 2486 |0.000586 | 2487 |python_startup_no_site | 2488 |
330 | 2491 |0.028557 | 2492 |0.028443 | 2493 |pypy5.6.0 | 2494 |0.000497 | 2495 |python_startup_no_site | 2496 |
386 | 2499 |0.038492 | 2500 |0.038369 | 2501 |pypy3-5.10.0-2 | 2502 |0.001098 | 2503 |python_startup_no_site | 2504 |
Last updated 3 mins ago
2509 |2516 |
2520 | | mean | 2521 |median | 2522 |runtime | 2523 |stdev | 2524 |test | 2525 |
---|---|---|---|---|---|
33 | 2530 |1.020278 | 2531 |1.018852 | 2532 |python2.7 | 2533 |0.006850 | 2534 |raytrace | 2535 |
93 | 2538 |1.154208 | 2539 |1.152956 | 2540 |python3.4 | 2541 |0.012136 | 2542 |raytrace | 2543 |
152 | 2546 |1.228867 | 2547 |1.225532 | 2548 |python3.5 | 2549 |0.019050 | 2550 |raytrace | 2551 |
211 | 2554 |1.177305 | 2555 |1.169228 | 2556 |python3.6 | 2557 |0.027562 | 2558 |raytrace | 2559 |
270 | 2562 |1.038772 | 2563 |1.039048 | 2564 |python3.7 | 2565 |0.014360 | 2566 |raytrace | 2567 |
331 | 2570 |0.012899 | 2571 |0.012807 | 2572 |pypy5.6.0 | 2573 |0.000388 | 2574 |raytrace | 2575 |
387 | 2578 |0.027969 | 2579 |0.027627 | 2580 |pypy3-5.10.0-2 | 2581 |0.001343 | 2582 |raytrace | 2583 |
Last updated 3 mins ago
2588 |2595 |
2599 | | mean | 2600 |median | 2601 |runtime | 2602 |stdev | 2603 |test | 2604 |
---|---|---|---|---|---|
34 | 2609 |0.343969 | 2610 |0.342940 | 2611 |python2.7 | 2612 |0.009645 | 2613 |regex_compile | 2614 |
94 | 2617 |0.348194 | 2618 |0.346209 | 2619 |python3.4 | 2620 |0.008963 | 2621 |regex_compile | 2622 |
153 | 2625 |0.332967 | 2626 |0.332261 | 2627 |python3.5 | 2628 |0.006449 | 2629 |regex_compile | 2630 |
212 | 2633 |0.374376 | 2634 |0.373799 | 2635 |python3.6 | 2636 |0.007764 | 2637 |regex_compile | 2638 |
271 | 2641 |0.355688 | 2642 |0.354725 | 2643 |python3.7 | 2644 |0.010787 | 2645 |regex_compile | 2646 |
332 | 2649 |0.079331 | 2650 |0.078311 | 2651 |pypy5.6.0 | 2652 |0.004870 | 2653 |regex_compile | 2654 |
388 | 2657 |0.047402 | 2658 |0.046748 | 2659 |pypy3-5.10.0-2 | 2660 |0.001673 | 2661 |regex_compile | 2662 |
Last updated 3 mins ago
2667 |2674 |
2678 | | mean | 2679 |median | 2680 |runtime | 2681 |stdev | 2682 |test | 2683 |
---|---|---|---|---|---|
35 | 2688 |0.249833 | 2689 |0.249339 | 2690 |python2.7 | 2691 |0.003324 | 2692 |regex_dna | 2693 |
95 | 2696 |0.235515 | 2697 |0.234844 | 2698 |python3.4 | 2699 |0.003107 | 2700 |regex_dna | 2701 |
154 | 2704 |0.249807 | 2705 |0.248986 | 2706 |python3.5 | 2707 |0.003486 | 2708 |regex_dna | 2709 |
213 | 2712 |0.240438 | 2713 |0.240298 | 2714 |python3.6 | 2715 |0.004678 | 2716 |regex_dna | 2717 |
272 | 2720 |0.265368 | 2721 |0.263231 | 2722 |python3.7 | 2723 |0.010272 | 2724 |regex_dna | 2725 |
333 | 2728 |0.098053 | 2729 |0.097810 | 2730 |pypy5.6.0 | 2731 |0.002191 | 2732 |regex_dna | 2733 |
389 | 2736 |0.105466 | 2737 |0.104961 | 2738 |pypy3-5.10.0-2 | 2739 |0.004418 | 2740 |regex_dna | 2741 |
Last updated 3 mins ago
2746 |2753 |
2757 | | mean | 2758 |median | 2759 |runtime | 2760 |stdev | 2761 |test | 2762 |
---|---|---|---|---|---|
36 | 2767 |0.004914 | 2768 |0.004898 | 2769 |python2.7 | 2770 |0.000089 | 2771 |regex_effbot | 2772 |
96 | 2775 |0.005307 | 2776 |0.005253 | 2777 |python3.4 | 2778 |0.000290 | 2779 |regex_effbot | 2780 |
155 | 2783 |0.005688 | 2784 |0.005675 | 2785 |python3.5 | 2786 |0.000133 | 2787 |regex_effbot | 2788 |
214 | 2791 |0.004851 | 2792 |0.004820 | 2793 |python3.6 | 2794 |0.000145 | 2795 |regex_effbot | 2796 |
273 | 2799 |0.004729 | 2800 |0.004740 | 2801 |python3.7 | 2802 |0.000120 | 2803 |regex_effbot | 2804 |
334 | 2807 |0.002205 | 2808 |0.002196 | 2809 |pypy5.6.0 | 2810 |0.000040 | 2811 |regex_effbot | 2812 |
390 | 2815 |0.002479 | 2816 |0.002478 | 2817 |pypy3-5.10.0-2 | 2818 |0.000070 | 2819 |regex_effbot | 2820 |
Last updated 3 mins ago
2825 |2832 |
2836 | | mean | 2837 |median | 2838 |runtime | 2839 |stdev | 2840 |test | 2841 |
---|---|---|---|---|---|
37 | 2846 |0.053709 | 2847 |0.053607 | 2848 |python2.7 | 2849 |0.001217 | 2850 |regex_v8 | 2851 |
97 | 2854 |0.041863 | 2855 |0.041771 | 2856 |python3.4 | 2857 |0.000674 | 2858 |regex_v8 | 2859 |
156 | 2862 |0.044693 | 2863 |0.044493 | 2864 |python3.5 | 2865 |0.001224 | 2866 |regex_v8 | 2867 |
215 | 2870 |0.043873 | 2871 |0.043754 | 2872 |python3.6 | 2873 |0.001146 | 2874 |regex_v8 | 2875 |
274 | 2878 |0.041949 | 2879 |0.041827 | 2880 |python3.7 | 2881 |0.001086 | 2882 |regex_v8 | 2883 |
335 | 2886 |0.095831 | 2887 |0.095192 | 2888 |pypy5.6.0 | 2889 |0.003332 | 2890 |regex_v8 | 2891 |
391 | 2894 |0.027382 | 2895 |0.027051 | 2896 |pypy3-5.10.0-2 | 2897 |0.001627 | 2898 |regex_v8 | 2899 |
Last updated 3 mins ago
2904 |2911 |
2915 | | mean | 2916 |median | 2917 |runtime | 2918 |stdev | 2919 |test | 2920 |
---|---|---|---|---|---|
38 | 2925 |0.156576 | 2926 |0.155993 | 2927 |python2.7 | 2928 |0.002770 | 2929 |richards | 2930 |
98 | 2933 |0.161915 | 2934 |0.160734 | 2935 |python3.4 | 2936 |0.005014 | 2937 |richards | 2938 |
157 | 2941 |0.169338 | 2942 |0.169068 | 2943 |python3.5 | 2944 |0.002764 | 2945 |richards | 2946 |
216 | 2949 |0.177092 | 2950 |0.176770 | 2951 |python3.6 | 2952 |0.005043 | 2953 |richards | 2954 |
275 | 2957 |0.155222 | 2958 |0.154909 | 2959 |python3.7 | 2960 |0.005236 | 2961 |richards | 2962 |
336 | 2965 |0.006467 | 2966 |0.006425 | 2967 |pypy5.6.0 | 2968 |0.000199 | 2969 |richards | 2970 |
392 | 2973 |0.006684 | 2974 |0.006662 | 2975 |pypy3-5.10.0-2 | 2976 |0.000216 | 2977 |richards | 2978 |
Last updated 3 mins ago
2983 |2990 |
2994 | | mean | 2995 |median | 2996 |runtime | 2997 |stdev | 2998 |test | 2999 |
---|---|---|---|---|---|
39 | 3004 |0.646828 | 3005 |0.643105 | 3006 |python2.7 | 3007 |0.013772 | 3008 |scimark_fft | 3009 |
99 | 3012 |0.651564 | 3013 |0.649798 | 3014 |python3.4 | 3015 |0.009348 | 3016 |scimark_fft | 3017 |
158 | 3020 |0.713312 | 3021 |0.711643 | 3022 |python3.5 | 3023 |0.008075 | 3024 |scimark_fft | 3025 |
217 | 3028 |0.690472 | 3029 |0.689894 | 3030 |python3.6 | 3031 |0.008609 | 3032 |scimark_fft | 3033 |
276 | 3036 |0.663974 | 3037 |0.664227 | 3038 |python3.7 | 3039 |0.012636 | 3040 |scimark_fft | 3041 |
337 | 3044 |0.009389 | 3045 |0.009345 | 3046 |pypy5.6.0 | 3047 |0.000174 | 3048 |scimark_fft | 3049 |
393 | 3052 |0.009496 | 3053 |0.009465 | 3054 |pypy3-5.10.0-2 | 3055 |0.000347 | 3056 |scimark_fft | 3057 |
Last updated 3 mins ago
3062 |3069 |
3073 | | mean | 3074 |median | 3075 |runtime | 3076 |stdev | 3077 |test | 3078 |
---|---|---|---|---|---|
40 | 3083 |0.505185 | 3084 |0.505478 | 3085 |python2.7 | 3086 |0.005561 | 3087 |scimark_lu | 3088 |
100 | 3091 |0.526729 | 3092 |0.525912 | 3093 |python3.4 | 3094 |0.010146 | 3095 |scimark_lu | 3096 |
159 | 3099 |0.491970 | 3100 |0.489963 | 3101 |python3.5 | 3102 |0.011265 | 3103 |scimark_lu | 3104 |
218 | 3107 |0.472977 | 3108 |0.472303 | 3109 |python3.6 | 3110 |0.011155 | 3111 |scimark_lu | 3112 |
277 | 3115 |0.353273 | 3116 |0.352452 | 3117 |python3.7 | 3118 |0.009647 | 3119 |scimark_lu | 3120 |
338 | 3123 |0.001554 | 3124 |0.001550 | 3125 |pypy5.6.0 | 3126 |0.000027 | 3127 |scimark_lu | 3128 |
394 | 3131 |0.001621 | 3132 |0.001616 | 3133 |pypy3-5.10.0-2 | 3134 |0.000054 | 3135 |scimark_lu | 3136 |
Last updated 3 mins ago
3141 |3148 |
3152 | | mean | 3153 |median | 3154 |runtime | 3155 |stdev | 3156 |test | 3157 |
---|---|---|---|---|---|
41 | 3162 |0.194541 | 3163 |0.194037 | 3164 |python2.7 | 3165 |0.002615 | 3166 |scimark_monte_carlo | 3167 |
101 | 3170 |0.207722 | 3171 |0.207609 | 3172 |python3.4 | 3173 |0.004403 | 3174 |scimark_monte_carlo | 3175 |
160 | 3178 |0.220305 | 3179 |0.220396 | 3180 |python3.5 | 3181 |0.004738 | 3182 |scimark_monte_carlo | 3183 |
219 | 3186 |0.226954 | 3187 |0.226366 | 3188 |python3.6 | 3189 |0.005287 | 3190 |scimark_monte_carlo | 3191 |
278 | 3194 |0.203844 | 3195 |0.203485 | 3196 |python3.7 | 3197 |0.005578 | 3198 |scimark_monte_carlo | 3199 |
339 | 3202 |0.003846 | 3203 |0.003833 | 3204 |pypy5.6.0 | 3205 |0.000073 | 3206 |scimark_monte_carlo | 3207 |
395 | 3210 |0.003456 | 3211 |0.003457 | 3212 |pypy3-5.10.0-2 | 3213 |0.000103 | 3214 |scimark_monte_carlo | 3215 |
Last updated 3 mins ago
3220 |3227 |
3231 | | mean | 3232 |median | 3233 |runtime | 3234 |stdev | 3235 |test | 3236 |
---|---|---|---|---|---|
42 | 3241 |0.417890 | 3242 |0.416903 | 3243 |python2.7 | 3244 |0.005382 | 3245 |scimark_sor | 3246 |
102 | 3249 |0.455383 | 3250 |0.453734 | 3251 |python3.4 | 3252 |0.008049 | 3253 |scimark_sor | 3254 |
161 | 3257 |0.477956 | 3258 |0.477831 | 3259 |python3.5 | 3260 |0.007034 | 3261 |scimark_sor | 3262 |
220 | 3265 |0.470675 | 3266 |0.470569 | 3267 |python3.6 | 3268 |0.007867 | 3269 |scimark_sor | 3270 |
279 | 3273 |0.396080 | 3274 |0.395941 | 3275 |python3.7 | 3276 |0.007807 | 3277 |scimark_sor | 3278 |
340 | 3281 |0.000834 | 3282 |0.000829 | 3283 |pypy5.6.0 | 3284 |0.000033 | 3285 |scimark_sor | 3286 |
396 | 3289 |0.000863 | 3290 |0.000860 | 3291 |pypy3-5.10.0-2 | 3292 |0.000043 | 3293 |scimark_sor | 3294 |
Last updated 3 mins ago
3299 |3306 |
3310 | | mean | 3311 |median | 3312 |runtime | 3313 |stdev | 3314 |test | 3315 |
---|---|---|---|---|---|
43 | 3320 |0.008290 | 3321 |0.008255 | 3322 |python2.7 | 3323 |0.000223 | 3324 |scimark_sparse_mat_mult | 3325 |
103 | 3328 |0.008080 | 3329 |0.008028 | 3330 |python3.4 | 3331 |0.000141 | 3332 |scimark_sparse_mat_mult | 3333 |
162 | 3336 |0.009074 | 3337 |0.009091 | 3338 |python3.5 | 3339 |0.000208 | 3340 |scimark_sparse_mat_mult | 3341 |
221 | 3344 |0.008235 | 3345 |0.008223 | 3346 |python3.6 | 3347 |0.000245 | 3348 |scimark_sparse_mat_mult | 3349 |
280 | 3352 |0.007940 | 3353 |0.007935 | 3354 |python3.7 | 3355 |0.000235 | 3356 |scimark_sparse_mat_mult | 3357 |
341 | 3360 |0.000122 | 3361 |0.000121 | 3362 |pypy5.6.0 | 3363 |0.000002 | 3364 |scimark_sparse_mat_mult | 3365 |
397 | 3368 |0.000127 | 3369 |0.000126 | 3370 |pypy3-5.10.0-2 | 3371 |0.000005 | 3372 |scimark_sparse_mat_mult | 3373 |
Last updated 3 mins ago
3378 |3385 |
3389 | | mean | 3390 |median | 3391 |runtime | 3392 |stdev | 3393 |test | 3394 |
---|---|---|---|---|---|
44 | 3399 |0.160895 | 3400 |0.160926 | 3401 |python2.7 | 3402 |0.003172 | 3403 |spambayes | 3404 |
342 | 3407 |0.053199 | 3408 |0.052792 | 3409 |pypy5.6.0 | 3410 |0.003099 | 3411 |spambayes | 3412 |
Last updated 3 mins ago
3417 |3424 |
3428 | | mean | 3429 |median | 3430 |runtime | 3431 |stdev | 3432 |test | 3433 |
---|---|---|---|---|---|
45 | 3438 |0.232405 | 3439 |0.231539 | 3440 |python2.7 | 3441 |0.003097 | 3442 |spectral_norm | 3443 |
104 | 3446 |0.293212 | 3447 |0.291318 | 3448 |python3.4 | 3449 |0.007708 | 3450 |spectral_norm | 3451 |
163 | 3454 |0.310099 | 3455 |0.308516 | 3456 |python3.5 | 3457 |0.007651 | 3458 |spectral_norm | 3459 |
222 | 3462 |0.292711 | 3463 |0.291260 | 3464 |python3.6 | 3465 |0.008804 | 3466 |spectral_norm | 3467 |
281 | 3470 |0.276450 | 3471 |0.276155 | 3472 |python3.7 | 3473 |0.008279 | 3474 |spectral_norm | 3475 |
343 | 3478 |0.005455 | 3479 |0.005419 | 3480 |pypy5.6.0 | 3481 |0.000138 | 3482 |spectral_norm | 3483 |
398 | 3486 |0.005548 | 3487 |0.005491 | 3488 |pypy3-5.10.0-2 | 3489 |0.000272 | 3490 |spectral_norm | 3491 |
Last updated 3 mins ago
3496 |3503 |
3507 | | mean | 3508 |median | 3509 |runtime | 3510 |stdev | 3511 |test | 3512 |
---|---|---|---|---|---|
46 | 3517 |0.268892 | 3518 |0.268419 | 3519 |python2.7 | 3520 |0.006496 | 3521 |sqlalchemy_declarative | 3522 |
105 | 3525 |0.299540 | 3526 |0.299038 | 3527 |python3.4 | 3528 |0.006819 | 3529 |sqlalchemy_declarative | 3530 |
164 | 3533 |0.286996 | 3534 |0.286832 | 3535 |python3.5 | 3536 |0.007248 | 3537 |sqlalchemy_declarative | 3538 |
223 | 3541 |0.295497 | 3542 |0.295866 | 3543 |python3.6 | 3544 |0.006636 | 3545 |sqlalchemy_declarative | 3546 |
282 | 3549 |0.277210 | 3550 |0.276241 | 3551 |python3.7 | 3552 |0.009359 | 3553 |sqlalchemy_declarative | 3554 |
344 | 3557 |0.271740 | 3558 |0.270286 | 3559 |pypy5.6.0 | 3560 |0.014889 | 3561 |sqlalchemy_declarative | 3562 |
399 | 3565 |0.334347 | 3566 |0.332916 | 3567 |pypy3-5.10.0-2 | 3568 |0.019093 | 3569 |sqlalchemy_declarative | 3570 |
Last updated 3 mins ago
3575 |3582 |
3586 | | mean | 3587 |median | 3588 |runtime | 3589 |stdev | 3590 |test | 3591 |
---|---|---|---|---|---|
47 | 3596 |0.053751 | 3597 |0.053154 | 3598 |python2.7 | 3599 |0.001962 | 3600 |sqlalchemy_imperative | 3601 |
106 | 3604 |0.064407 | 3605 |0.063782 | 3606 |python3.4 | 3607 |0.002467 | 3608 |sqlalchemy_imperative | 3609 |
165 | 3612 |0.057350 | 3613 |0.056664 | 3614 |python3.5 | 3615 |0.002481 | 3616 |sqlalchemy_imperative | 3617 |
224 | 3620 |0.057134 | 3621 |0.056465 | 3622 |python3.6 | 3623 |0.003360 | 3624 |sqlalchemy_imperative | 3625 |
283 | 3628 |0.051858 | 3629 |0.051337 | 3630 |python3.7 | 3631 |0.002310 | 3632 |sqlalchemy_imperative | 3633 |
Last updated 3 mins ago
3638 |3645 |
3649 | | mean | 3650 |median | 3651 |runtime | 3652 |stdev | 3653 |test | 3654 |
---|---|---|---|---|---|
48 | 3659 |0.000004 | 3660 |0.000004 | 3661 |python2.7 | 3662 |1.316140e-07 | 3663 |sqlite_synth | 3664 |
107 | 3667 |0.000006 | 3668 |0.000006 | 3669 |python3.4 | 3670 |9.619870e-08 | 3671 |sqlite_synth | 3672 |
166 | 3675 |0.000006 | 3676 |0.000006 | 3677 |python3.5 | 3678 |1.304340e-07 | 3679 |sqlite_synth | 3680 |
225 | 3683 |0.000006 | 3684 |0.000006 | 3685 |python3.6 | 3686 |1.458988e-07 | 3687 |sqlite_synth | 3688 |
284 | 3691 |0.000005 | 3692 |0.000005 | 3693 |python3.7 | 3694 |3.049296e-07 | 3695 |sqlite_synth | 3696 |
345 | 3699 |0.000003 | 3700 |0.000003 | 3701 |pypy5.6.0 | 3702 |1.171906e-07 | 3703 |sqlite_synth | 3704 |
400 | 3707 |0.000003 | 3708 |0.000003 | 3709 |pypy3-5.10.0-2 | 3710 |1.635533e-07 | 3711 |sqlite_synth | 3712 |
Last updated 3 mins ago
3717 |3724 |
3728 | | mean | 3729 |median | 3730 |runtime | 3731 |stdev | 3732 |test | 3733 |
---|---|---|---|---|---|
49 | 3738 |1.420316 | 3739 |1.418876 | 3740 |python2.7 | 3741 |0.010288 | 3742 |sympy_expand | 3743 |
108 | 3746 |1.306004 | 3747 |1.313993 | 3748 |python3.4 | 3749 |0.029023 | 3750 |sympy_expand | 3751 |
167 | 3754 |1.072273 | 3755 |1.078114 | 3756 |python3.5 | 3757 |0.025889 | 3758 |sympy_expand | 3759 |
226 | 3762 |0.929988 | 3763 |0.929334 | 3764 |python3.6 | 3765 |0.013014 | 3766 |sympy_expand | 3767 |
285 | 3770 |0.773326 | 3771 |0.771854 | 3772 |python3.7 | 3773 |0.012954 | 3774 |sympy_expand | 3775 |
346 | 3778 |0.200067 | 3779 |0.196134 | 3780 |pypy5.6.0 | 3781 |0.011559 | 3782 |sympy_expand | 3783 |
401 | 3786 |0.275688 | 3787 |0.270265 | 3788 |pypy3-5.10.0-2 | 3789 |0.017900 | 3790 |sympy_expand | 3791 |
Last updated 3 mins ago
3796 |3803 |
3807 | | mean | 3808 |median | 3809 |runtime | 3810 |stdev | 3811 |test | 3812 |
---|---|---|---|---|---|
50 | 3817 |0.045746 | 3818 |0.045432 | 3819 |python2.7 | 3820 |0.001150 | 3821 |sympy_integrate | 3822 |
109 | 3825 |0.049245 | 3826 |0.048932 | 3827 |python3.4 | 3828 |0.001622 | 3829 |sympy_integrate | 3830 |
168 | 3833 |0.043095 | 3834 |0.043159 | 3835 |python3.5 | 3836 |0.000693 | 3837 |sympy_integrate | 3838 |
227 | 3841 |0.042955 | 3842 |0.042778 | 3843 |python3.6 | 3844 |0.001071 | 3845 |sympy_integrate | 3846 |
286 | 3849 |0.038986 | 3850 |0.038946 | 3851 |python3.7 | 3852 |0.001127 | 3853 |sympy_integrate | 3854 |
347 | 3857 |0.040279 | 3858 |0.039707 | 3859 |pypy5.6.0 | 3860 |0.004081 | 3861 |sympy_integrate | 3862 |
402 | 3865 |0.089167 | 3866 |0.087537 | 3867 |pypy3-5.10.0-2 | 3868 |0.009068 | 3869 |sympy_integrate | 3870 |
Last updated 3 mins ago
3875 |3882 |
3886 | | mean | 3887 |median | 3888 |runtime | 3889 |stdev | 3890 |test | 3891 |
---|---|---|---|---|---|
51 | 3896 |0.301620 | 3897 |0.300607 | 3898 |python2.7 | 3899 |0.006048 | 3900 |sympy_sum | 3901 |
110 | 3904 |0.276601 | 3905 |0.275381 | 3906 |python3.4 | 3907 |0.007441 | 3908 |sympy_sum | 3909 |
169 | 3912 |0.224955 | 3913 |0.224360 | 3914 |python3.5 | 3915 |0.003717 | 3916 |sympy_sum | 3917 |
228 | 3920 |0.199736 | 3921 |0.199154 | 3922 |python3.6 | 3923 |0.005297 | 3924 |sympy_sum | 3925 |
287 | 3928 |0.180270 | 3929 |0.180495 | 3930 |python3.7 | 3931 |0.004118 | 3932 |sympy_sum | 3933 |
348 | 3936 |0.092442 | 3937 |0.089782 | 3938 |pypy5.6.0 | 3939 |0.008655 | 3940 |sympy_sum | 3941 |
403 | 3944 |0.150971 | 3945 |0.148832 | 3946 |pypy3-5.10.0-2 | 3947 |0.015215 | 3948 |sympy_sum | 3949 |
Last updated 3 mins ago
3954 |3961 |
3965 | | mean | 3966 |median | 3967 |runtime | 3968 |stdev | 3969 |test | 3970 |
---|---|---|---|---|---|
52 | 3975 |0.577855 | 3976 |0.576863 | 3977 |python2.7 | 3978 |0.008130 | 3979 |sympy_str | 3980 |
111 | 3983 |0.538670 | 3984 |0.538735 | 3985 |python3.4 | 3986 |0.009664 | 3987 |sympy_str | 3988 |
170 | 3991 |0.454614 | 3992 |0.456847 | 3993 |python3.5 | 3994 |0.011104 | 3995 |sympy_str | 3996 |
229 | 3999 |0.409482 | 4000 |0.409770 | 4001 |python3.6 | 4002 |0.008589 | 4003 |sympy_str | 4004 |
288 | 4007 |0.349640 | 4008 |0.348308 | 4009 |python3.7 | 4010 |0.009505 | 4011 |sympy_str | 4012 |
349 | 4015 |0.120725 | 4016 |0.115255 | 4017 |pypy5.6.0 | 4018 |0.015617 | 4019 |sympy_str | 4020 |
404 | 4023 |0.171393 | 4024 |0.167409 | 4025 |pypy3-5.10.0-2 | 4026 |0.017059 | 4027 |sympy_str | 4028 |
Last updated 3 mins ago
4033 |4040 |
4044 | | mean | 4045 |median | 4046 |runtime | 4047 |stdev | 4048 |test | 4049 |
---|---|---|---|---|---|
53 | 4054 |0.539919 | 4055 |0.537957 | 4056 |python2.7 | 4057 |0.007765 | 4058 |telco | 4059 |
112 | 4062 |0.013954 | 4063 |0.013895 | 4064 |python3.4 | 4065 |0.000320 | 4066 |telco | 4067 |
171 | 4070 |0.014339 | 4071 |0.014350 | 4072 |python3.5 | 4073 |0.000269 | 4074 |telco | 4075 |
230 | 4078 |0.013514 | 4079 |0.013497 | 4080 |python3.6 | 4081 |0.000386 | 4082 |telco | 4083 |
289 | 4086 |0.011467 | 4087 |0.011387 | 4088 |python3.7 | 4089 |0.000682 | 4090 |telco | 4091 |
350 | 4094 |0.015297 | 4095 |0.015339 | 4096 |pypy5.6.0 | 4097 |0.000521 | 4098 |telco | 4099 |
405 | 4102 |0.100215 | 4103 |0.100382 | 4104 |pypy3-5.10.0-2 | 4105 |0.004014 | 4106 |telco | 4107 |
Last updated 3 mins ago
4112 |4119 |
4123 | | mean | 4124 |median | 4125 |runtime | 4126 |stdev | 4127 |test | 4128 |
---|---|---|---|---|---|
54 | 4133 |1.109847e-07 | 4134 |1.101607e-07 | 4135 |python2.7 | 4136 |2.820550e-09 | 4137 |unpack_sequence | 4138 |
113 | 4141 |1.273402e-07 | 4142 |1.272077e-07 | 4143 |python3.4 | 4144 |2.782053e-09 | 4145 |unpack_sequence | 4146 |
172 | 4149 |1.334245e-07 | 4150 |1.326784e-07 | 4151 |python3.5 | 4152 |3.472287e-09 | 4153 |unpack_sequence | 4154 |
231 | 4157 |8.992002e-08 | 4158 |8.833576e-08 | 4159 |python3.6 | 4160 |5.548868e-09 | 4161 |unpack_sequence | 4162 |
290 | 4165 |8.431320e-08 | 4166 |8.379849e-08 | 4167 |python3.7 | 4168 |4.232246e-09 | 4169 |unpack_sequence | 4170 |
351 | 4173 |1.794836e-07 | 4174 |1.793608e-07 | 4175 |pypy5.6.0 | 4176 |6.813298e-09 | 4177 |unpack_sequence | 4178 |
406 | 4181 |1.714195e-07 | 4182 |1.705713e-07 | 4183 |pypy3-5.10.0-2 | 4184 |1.180231e-08 | 4185 |unpack_sequence | 4186 |
Last updated 3 mins ago
4191 |4198 |
4202 | | mean | 4203 |median | 4204 |runtime | 4205 |stdev | 4206 |test | 4207 |
---|---|---|---|---|---|
55 | 4212 |0.000030 | 4213 |0.000029 | 4214 |python2.7 | 4215 |1.824197e-06 | 4216 |unpickle | 4217 |
114 | 4220 |0.000036 | 4221 |0.000036 | 4222 |python3.4 | 4223 |8.302283e-07 | 4224 |unpickle | 4225 |
173 | 4228 |0.000039 | 4229 |0.000039 | 4230 |python3.5 | 4231 |7.855760e-07 | 4232 |unpickle | 4233 |
232 | 4236 |0.000031 | 4237 |0.000031 | 4238 |python3.6 | 4239 |1.128009e-06 | 4240 |unpickle | 4241 |
291 | 4244 |0.000028 | 4245 |0.000028 | 4246 |python3.7 | 4247 |6.382187e-07 | 4248 |unpickle | 4249 |
352 | 4252 |0.000035 | 4253 |0.000034 | 4254 |pypy5.6.0 | 4255 |1.200774e-06 | 4256 |unpickle | 4257 |
Last updated 3 mins ago
4262 |4269 |
4273 | | mean | 4274 |median | 4275 |runtime | 4276 |stdev | 4277 |test | 4278 |
---|---|---|---|---|---|
56 | 4283 |0.000019 | 4284 |0.000019 | 4285 |python2.7 | 4286 |4.778430e-07 | 4287 |unpickle_list | 4288 |
115 | 4291 |0.000016 | 4292 |0.000016 | 4293 |python3.4 | 4294 |4.254376e-07 | 4295 |unpickle_list | 4296 |
174 | 4299 |0.000016 | 4300 |0.000016 | 4301 |python3.5 | 4302 |2.896465e-07 | 4303 |unpickle_list | 4304 |
233 | 4307 |0.000007 | 4308 |0.000007 | 4309 |python3.6 | 4310 |2.967743e-07 | 4311 |unpickle_list | 4312 |
292 | 4315 |0.000006 | 4316 |0.000006 | 4317 |python3.7 | 4318 |1.994668e-07 | 4319 |unpickle_list | 4320 |
353 | 4323 |0.000012 | 4324 |0.000012 | 4325 |pypy5.6.0 | 4326 |4.041836e-07 | 4327 |unpickle_list | 4328 |
Last updated 3 mins ago
4333 |4340 |
4344 | | mean | 4345 |median | 4346 |runtime | 4347 |stdev | 4348 |test | 4349 |
---|---|---|---|---|---|
57 | 4354 |0.000429 | 4355 |0.000429 | 4356 |python2.7 | 4357 |0.000013 | 4358 |unpickle_pure_python | 4359 |
116 | 4362 |0.000741 | 4363 |0.000736 | 4364 |python3.4 | 4365 |0.000019 | 4366 |unpickle_pure_python | 4367 |
175 | 4370 |0.000776 | 4371 |0.000774 | 4372 |python3.5 | 4373 |0.000024 | 4374 |unpickle_pure_python | 4375 |
234 | 4378 |0.000800 | 4379 |0.000804 | 4380 |python3.6 | 4381 |0.000021 | 4382 |unpickle_pure_python | 4383 |
293 | 4386 |0.000760 | 4387 |0.000756 | 4388 |python3.7 | 4389 |0.000022 | 4390 |unpickle_pure_python | 4391 |
354 | 4394 |0.000044 | 4395 |0.000043 | 4396 |pypy5.6.0 | 4397 |0.000003 | 4398 |unpickle_pure_python | 4399 |
407 | 4402 |0.000076 | 4403 |0.000075 | 4404 |pypy3-5.10.0-2 | 4405 |0.000004 | 4406 |unpickle_pure_python | 4407 |
Last updated 3 mins ago
4412 |4419 |
4423 | | mean | 4424 |median | 4425 |runtime | 4426 |stdev | 4427 |test | 4428 |
---|---|---|---|---|---|
58 | 4433 |0.170967 | 4434 |0.170200 | 4435 |python2.7 | 4436 |0.004199 | 4437 |xml_etree_parse | 4438 |
117 | 4441 |0.279642 | 4442 |0.278116 | 4443 |python3.4 | 4444 |0.008604 | 4445 |xml_etree_parse | 4446 |
176 | 4449 |0.299479 | 4450 |0.299363 | 4451 |python3.5 | 4452 |0.004288 | 4453 |xml_etree_parse | 4454 |
235 | 4457 |0.254030 | 4458 |0.254102 | 4459 |python3.6 | 4460 |0.004516 | 4461 |xml_etree_parse | 4462 |
294 | 4465 |0.263720 | 4466 |0.262211 | 4467 |python3.7 | 4468 |0.010129 | 4469 |xml_etree_parse | 4470 |
355 | 4473 |0.469450 | 4474 |0.462864 | 4475 |pypy5.6.0 | 4476 |0.018710 | 4477 |xml_etree_parse | 4478 |
Last updated 3 mins ago
4483 |4490 |
4494 | | mean | 4495 |median | 4496 |runtime | 4497 |stdev | 4498 |test | 4499 |
---|---|---|---|---|---|
59 | 4504 |0.162029 | 4505 |0.161400 | 4506 |python2.7 | 4507 |0.003839 | 4508 |xml_etree_iterparse | 4509 |
118 | 4512 |0.393465 | 4513 |0.390779 | 4514 |python3.4 | 4515 |0.012085 | 4516 |xml_etree_iterparse | 4517 |
177 | 4520 |0.411064 | 4521 |0.410677 | 4522 |python3.5 | 4523 |0.008082 | 4524 |xml_etree_iterparse | 4525 |
236 | 4528 |0.218182 | 4529 |0.217915 | 4530 |python3.6 | 4531 |0.007771 | 4532 |xml_etree_iterparse | 4533 |
295 | 4536 |0.205928 | 4537 |0.205119 | 4538 |python3.7 | 4539 |0.008685 | 4540 |xml_etree_iterparse | 4541 |
356 | 4544 |0.190257 | 4545 |0.188002 | 4546 |pypy5.6.0 | 4547 |0.007462 | 4548 |xml_etree_iterparse | 4549 |
Last updated 3 mins ago
4554 |4561 |
4565 | | mean | 4566 |median | 4567 |runtime | 4568 |stdev | 4569 |test | 4570 |
---|---|---|---|---|---|
60 | 4575 |0.257565 | 4576 |0.256724 | 4577 |python2.7 | 4578 |0.005744 | 4579 |xml_etree_generate | 4580 |
119 | 4583 |0.245449 | 4584 |0.244382 | 4585 |python3.4 | 4586 |0.004842 | 4587 |xml_etree_generate | 4588 |
178 | 4591 |0.244563 | 4592 |0.243873 | 4593 |python3.5 | 4594 |0.004324 | 4595 |xml_etree_generate | 4596 |
237 | 4599 |0.223485 | 4600 |0.221942 | 4601 |python3.6 | 4602 |0.008921 | 4603 |xml_etree_generate | 4604 |
296 | 4607 |0.207410 | 4608 |0.207456 | 4609 |python3.7 | 4610 |0.005083 | 4611 |xml_etree_generate | 4612 |
357 | 4615 |0.086278 | 4616 |0.086036 | 4617 |pypy5.6.0 | 4618 |0.002646 | 4619 |xml_etree_generate | 4620 |
Last updated 3 mins ago
4625 |4632 |
4636 | | mean | 4637 |median | 4638 |runtime | 4639 |stdev | 4640 |test | 4641 |
---|---|---|---|---|---|
61 | 4646 |0.175770 | 4647 |0.175477 | 4648 |python2.7 | 4649 |0.002790 | 4650 |xml_etree_process | 4651 |
120 | 4654 |0.202450 | 4655 |0.201705 | 4656 |python3.4 | 4657 |0.009127 | 4658 |xml_etree_process | 4659 |
179 | 4662 |0.199168 | 4663 |0.199591 | 4664 |python3.5 | 4665 |0.003470 | 4666 |xml_etree_process | 4667 |
238 | 4670 |0.179066 | 4671 |0.178363 | 4672 |python3.6 | 4673 |0.005216 | 4674 |xml_etree_process | 4675 |
297 | 4678 |0.165501 | 4679 |0.164430 | 4680 |python3.7 | 4681 |0.004452 | 4682 |xml_etree_process | 4683 |
358 | 4686 |0.056442 | 4687 |0.055975 | 4688 |pypy5.6.0 | 4689 |0.002707 | 4690 |xml_etree_process | 4691 |
Last updated 3 mins ago
4696 |14 | {{test.results_table}} 15 |
16 |Last updated 3 mins ago
17 |