3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ALL); function test() {} $nIter = 1000000; $argNums = [0, 1, 2, 3, 4, 5, 100]; $func = 'test'; foreach ($argNums as $argNum) { $args = $argNum == 0 ? [] : array_fill(0, $argNum, null); $startTime = microtime(true); for ($i = 0; $i < $nIter; ++$i) { call_user_func_array($func, $args); } $endTime = microtime(true); echo "cufa with $argNum args took ", $endTime - $startTime, "\n"; $startTime = microtime(true); for ($i = 0; $i < $nIter; ++$i) { switch (count($args)) { case 0: $func(); break; case 1: $func($args[0]); break; case 2: $func($args[0], $args[1]); break; case 3: $func($args[0], $args[1], $args[2]); break; case 4: $func($args[0], $args[1], $args[2], $args[3]); break; case 5: $func($args[0], $args[1], $args[2], $args[3], $args[4]); break; default: call_user_func_array($func, $args); break; } } $endTime = microtime(true); echo "switch with $argNum args took ", $endTime - $startTime, "\n"; $startTime = microtime(true); for ($i = 0; $i < $nIter; ++$i) { $func(...$args); } $endTime = microtime(true); echo "unpack with $argNum args took ", $endTime - $startTime, "\n"; }

Abusive script

This script was stopped while abusing our resources

Output for 8.0.10
cufa with 0 args took 0.046627998352051 switch with 0 args took 0.052528142929077 unpack with 0 args took 0.038783073425293 cufa with 1 args took 0.059438943862915 switch with 1 args took 0.083353042602539 unpack with 1 args took 0.053750991821289 cufa with 2 args took 0.062495946884155 switch with 2 args took 0.087863206863403 unpack with 2 args took 0.063401937484741 cufa with 3 args took 0.071573972702026 switch with 3 args took 0.099929094314575 unpack with 3 args took 0.05924391746521 cufa with 4 args took 0.066783905029297 switch with 4 args took 0.10176014900208 unpack with 4 args took 0.060772895812988 cufa with 5 args took 0.067790031433105 switch with 5 args took 0.13886499404907 unpack with 5 args took 0.060805797576904 cufa with 100 args took 0.3567681312561
Process exited with code 137.
Output for 8.0.9
cufa with 0 args took 0.044625997543335 switch with 0 args took 0.053190946578979 unpack with 0 args took 0.042306184768677 cufa with 1 args took 0.060312986373901 switch with 1 args took 0.068838119506836 unpack with 1 args took 0.049742937088013 cufa with 2 args took 0.062623023986816 switch with 2 args took 0.081033945083618 unpack with 2 args took 0.054965972900391 cufa with 3 args took 0.063318967819214 switch with 3 args took 0.08439302444458 unpack with 3 args took 0.05876898765564 cufa with 4 args took 0.06983494758606 switch with 4 args took 0.09909200668335 unpack with 4 args took 0.060955047607422 cufa with 5 args took 0.071430921554565 switch with 5 args took 0.13460302352905 unpack with 5 args took 0.06276798248291 cufa with 100 args took 0.39422392845154
Process exited with code 137.
Output for 8.0.8
cufa with 0 args took 0.039537906646729 switch with 0 args took 0.049226999282837 unpack with 0 args took 0.042181015014648 cufa with 1 args took 0.053568840026855 switch with 1 args took 0.066236972808838 unpack with 1 args took 0.052634954452515 cufa with 2 args took 0.054709911346436 switch with 2 args took 0.073582887649536 unpack with 2 args took 0.056330919265747 cufa with 3 args took 0.059920072555542 switch with 3 args took 0.083685159683228 unpack with 3 args took 0.060177087783813 cufa with 4 args took 0.062846899032593 switch with 4 args took 0.093938827514648 unpack with 4 args took 0.065250873565674 cufa with 5 args took 0.067095994949341 switch with 5 args took 0.13274097442627 unpack with 5 args took 0.065324068069458 cufa with 100 args took 0.39158082008362 switch with 100 args took 0.40931296348572
Process exited with code 137.
Output for 8.0.7
cufa with 0 args took 0.040227890014648 switch with 0 args took 0.051757097244263 unpack with 0 args took 0.042495965957642 cufa with 1 args took 0.053175926208496 switch with 1 args took 0.067512989044189 unpack with 1 args took 0.050760984420776 cufa with 2 args took 0.056819200515747 switch with 2 args took 0.078498840332031 unpack with 2 args took 0.055710077285767 cufa with 3 args took 0.061826944351196 switch with 3 args took 0.082965135574341 unpack with 3 args took 0.057816028594971 cufa with 4 args took 0.064072132110596 switch with 4 args took 0.092743158340454 unpack with 4 args took 0.058822870254517 cufa with 5 args took 0.066709995269775 switch with 5 args took 0.13103103637695 unpack with 5 args took 0.062250852584839 cufa with 100 args took 0.39513516426086 switch with 100 args took 0.41050100326538
Process exited with code 137.
Output for 8.0.6
cufa with 0 args took 0.039627075195312 switch with 0 args took 0.050564050674438 unpack with 0 args took 0.039678812026978 cufa with 1 args took 0.051172018051147 switch with 1 args took 0.068364858627319 unpack with 1 args took 0.050060987472534 cufa with 2 args took 0.056311130523682 switch with 2 args took 0.078389883041382 unpack with 2 args took 0.054229021072388 cufa with 3 args took 0.057922124862671 switch with 3 args took 0.08367395401001 unpack with 3 args took 0.057353019714355 cufa with 4 args took 0.063167095184326 switch with 4 args took 0.092002868652344 unpack with 4 args took 0.057629108428955 cufa with 5 args took 0.063791036605835 switch with 5 args took 0.13378691673279 unpack with 5 args took 0.059998035430908 cufa with 100 args took 0.36298799514771 switch with 100 args took 0.37853407859802
Process exited with code 137.
Output for 8.0.5
cufa with 0 args took 0.039883852005005 switch with 0 args took 0.051832914352417 unpack with 0 args took 0.0417320728302 cufa with 1 args took 0.051337957382202 switch with 1 args took 0.069517850875854 unpack with 1 args took 0.050003051757812 cufa with 2 args took 0.055655002593994 switch with 2 args took 0.077268838882446 unpack with 2 args took 0.0535728931427 cufa with 3 args took 0.059221982955933 switch with 3 args took 0.08375096321106 unpack with 3 args took 0.055191993713379 cufa with 4 args took 0.063062906265259 switch with 4 args took 0.091558218002319 unpack with 4 args took 0.057585000991821 cufa with 5 args took 0.064695119857788 switch with 5 args took 0.13148307800293 unpack with 5 args took 0.059823036193848 cufa with 100 args took 0.35564279556274 switch with 100 args took 0.38312292098999
Process exited with code 137.
Output for 8.0.3
cufa with 0 args took 0.040244102478027 switch with 0 args took 0.049095869064331 unpack with 0 args took 0.040531873703003 cufa with 1 args took 0.054064035415649 switch with 1 args took 0.07224702835083 unpack with 1 args took 0.05158519744873 cufa with 2 args took 0.060115098953247 switch with 2 args took 0.082739114761353 unpack with 2 args took 0.054503917694092 cufa with 3 args took 0.06389594078064 switch with 3 args took 0.085047960281372 unpack with 3 args took 0.05809211730957 cufa with 4 args took 0.067861080169678 switch with 4 args took 0.090828895568848 unpack with 4 args took 0.058893918991089 cufa with 5 args took 0.07290506362915 switch with 5 args took 0.13401007652283 unpack with 5 args took 0.061136960983276 cufa with 100 args took 0.45812392234802
Process exited with code 137.
Output for 8.0.2
cufa with 0 args took 0.042971849441528 switch with 0 args took 0.049758195877075 unpack with 0 args took 0.04108190536499 cufa with 1 args took 0.055388927459717 switch with 1 args took 0.0660240650177 unpack with 1 args took 0.051976919174194 cufa with 2 args took 0.061568021774292 switch with 2 args took 0.076766967773438 unpack with 2 args took 0.05495285987854 cufa with 3 args took 0.066200971603394 switch with 3 args took 0.080684900283813 unpack with 3 args took 0.057325839996338 cufa with 4 args took 0.07188606262207 switch with 4 args took 0.090011119842529 unpack with 4 args took 0.061083078384399 cufa with 5 args took 0.077091932296753 switch with 5 args took 0.13215708732605 unpack with 5 args took 0.063063859939575 cufa with 100 args took 0.459223985672
Process exited with code 137.
Output for 8.0.1
cufa with 0 args took 0.040947914123535 switch with 0 args took 0.054531097412109 unpack with 0 args took 0.045947074890137 cufa with 1 args took 0.052762031555176 switch with 1 args took 0.074872970581055 unpack with 1 args took 0.056417942047119 cufa with 2 args took 0.062813997268677 switch with 2 args took 0.083821058273315 unpack with 2 args took 0.058274984359741 cufa with 3 args took 0.065963983535767 switch with 3 args took 0.090115070343018 unpack with 3 args took 0.059975147247314 cufa with 4 args took 0.075690031051636 switch with 4 args took 0.098766803741455 unpack with 4 args took 0.063164949417114 cufa with 5 args took 0.078352928161621 switch with 5 args took 0.1334400177002 unpack with 5 args took 0.064820051193237 cufa with 100 args took 0.37685799598694
Process exited with code 137.
Output for 8.0.0
cufa with 0 args took 0.041750907897949 switch with 0 args took 0.049778938293457 unpack with 0 args took 0.040016889572144 cufa with 1 args took 0.061516046524048 switch with 1 args took 0.075050830841064 unpack with 1 args took 0.051328897476196 cufa with 2 args took 0.062589883804321 switch with 2 args took 0.083621978759766 unpack with 2 args took 0.054986000061035 cufa with 3 args took 0.065366983413696 switch with 3 args took 0.09014105796814 unpack with 3 args took 0.057122945785522 cufa with 4 args took 0.07018518447876 switch with 4 args took 0.093700885772705 unpack with 4 args took 0.057183980941772 cufa with 5 args took 0.075615882873535 switch with 5 args took 0.13338303565979 unpack with 5 args took 0.060148954391479 cufa with 100 args took 0.39058709144592
Process exited with code 137.
Output for 7.4.23
cufa with 0 args took 0.040415048599243 switch with 0 args took 0.054150104522705 unpack with 0 args took 0.044399976730347 cufa with 1 args took 0.050683975219727 switch with 1 args took 0.071815967559814 unpack with 1 args took 0.052371025085449 cufa with 2 args took 0.0589439868927 switch with 2 args took 0.079373121261597 unpack with 2 args took 0.054455041885376 cufa with 3 args took 0.056684970855713 switch with 3 args took 0.087976932525635 unpack with 3 args took 0.057376861572266 cufa with 4 args took 0.059040069580078 switch with 4 args took 0.09738302230835 unpack with 4 args took 0.061583995819092 cufa with 5 args took 0.063205003738403 switch with 5 args took 0.13490509986877 unpack with 5 args took 0.063524007797241 cufa with 100 args took 0.33263897895813 switch with 100 args took 0.34700298309326
Process exited with code 137.
Output for 7.4.22
cufa with 0 args took 0.04191517829895 switch with 0 args took 0.048161029815674 unpack with 0 args took 0.044201135635376 cufa with 1 args took 0.05135703086853 switch with 1 args took 0.064045906066895 unpack with 1 args took 0.05134105682373 cufa with 2 args took 0.057528972625732 switch with 2 args took 0.073344945907593 unpack with 2 args took 0.0555579662323 cufa with 3 args took 0.055166959762573 switch with 3 args took 0.080330848693848 unpack with 3 args took 0.057408094406128 cufa with 4 args took 0.059156894683838 switch with 4 args took 0.088703870773315 unpack with 4 args took 0.059798002243042 cufa with 5 args took 0.062865972518921 switch with 5 args took 0.13222002983093 unpack with 5 args took 0.062278032302856 cufa with 100 args took 0.32344889640808 switch with 100 args took 0.33789992332458
Process exited with code 137.
Output for 7.4.21
cufa with 0 args took 0.045298099517822 switch with 0 args took 0.050556182861328 unpack with 0 args took 0.041526794433594 cufa with 1 args took 0.052519798278809 switch with 1 args took 0.071360111236572 unpack with 1 args took 0.051063060760498 cufa with 2 args took 0.05573296546936 switch with 2 args took 0.075289964675903 unpack with 2 args took 0.057636022567749 cufa with 3 args took 0.057835817337036 switch with 3 args took 0.085585832595825 unpack with 3 args took 0.057327032089233 cufa with 4 args took 0.059722900390625 switch with 4 args took 0.089427947998047 unpack with 4 args took 0.060242891311646 cufa with 5 args took 0.060804128646851 switch with 5 args took 0.13400602340698 unpack with 5 args took 0.064903020858765 cufa with 100 args took 0.32588696479797 switch with 100 args took 0.34142804145813
Process exited with code 137.
Output for 7.4.20
cufa with 0 args took 0.045111894607544 switch with 0 args took 0.050478935241699 unpack with 0 args took 0.040956020355225 cufa with 1 args took 0.05457592010498 switch with 1 args took 0.06793999671936 unpack with 1 args took 0.052895069122314 cufa with 2 args took 0.05669093132019 switch with 2 args took 0.073647022247314 unpack with 2 args took 0.05404806137085 cufa with 3 args took 0.060104846954346 switch with 3 args took 0.080332040786743 unpack with 3 args took 0.057185888290405 cufa with 4 args took 0.060245990753174 switch with 4 args took 0.090565919876099 unpack with 4 args took 0.059528112411499 cufa with 5 args took 0.063028812408447 switch with 5 args took 0.1330509185791 unpack with 5 args took 0.061251878738403 cufa with 100 args took 0.33091711997986 switch with 100 args took 0.34255290031433
Process exited with code 137.
Output for 7.4.19
cufa with 0 args took 0.043386936187744 switch with 0 args took 0.047006845474243 unpack with 0 args took 0.043431043624878 cufa with 1 args took 0.057739973068237 switch with 1 args took 0.066251993179321 unpack with 1 args took 0.054768085479736 cufa with 2 args took 0.059573888778687 switch with 2 args took 0.072364807128906 unpack with 2 args took 0.055392980575562 cufa with 3 args took 0.061805009841919 switch with 3 args took 0.080612897872925 unpack with 3 args took 0.05800199508667 cufa with 4 args took 0.063349962234497 switch with 4 args took 0.087739944458008 unpack with 4 args took 0.060149192810059 cufa with 5 args took 0.066535949707031 switch with 5 args took 0.12956309318542 unpack with 5 args took 0.063826084136963 cufa with 100 args took 0.332111120224 switch with 100 args took 0.34312987327576
Process exited with code 137.
Output for 7.4.18
cufa with 0 args took 0.043616056442261 switch with 0 args took 0.05262303352356 unpack with 0 args took 0.046124935150146 cufa with 1 args took 0.061385154724121 switch with 1 args took 0.071608066558838 unpack with 1 args took 0.054820775985718 cufa with 2 args took 0.059700012207031 switch with 2 args took 0.080409049987793 unpack with 2 args took 0.060378074645996 cufa with 3 args took 0.062520027160645 switch with 3 args took 0.087831020355225 unpack with 3 args took 0.060415029525757 cufa with 4 args took 0.063137054443359 switch with 4 args took 0.088397979736328 unpack with 4 args took 0.058109998703003 cufa with 5 args took 0.063827991485596 switch with 5 args took 0.129390001297 unpack with 5 args took 0.060257911682129 cufa with 100 args took 0.32172894477844 switch with 100 args took 0.33917784690857
Process exited with code 137.
Output for 7.4.16
cufa with 0 args took 0.040618896484375 switch with 0 args took 0.053093194961548 unpack with 0 args took 0.046257019042969 cufa with 1 args took 0.054427862167358 switch with 1 args took 0.069278001785278 unpack with 1 args took 0.057226896286011 cufa with 2 args took 0.052775144577026 switch with 2 args took 0.075726985931396 unpack with 2 args took 0.056943893432617 cufa with 3 args took 0.056221008300781 switch with 3 args took 0.083248853683472 unpack with 3 args took 0.058161020278931 cufa with 4 args took 0.058144092559814 switch with 4 args took 0.091171979904175 unpack with 4 args took 0.060405969619751 cufa with 5 args took 0.060914039611816 switch with 5 args took 0.130774974823 unpack with 5 args took 0.062716960906982 cufa with 100 args took 0.31637001037598 switch with 100 args took 0.33728694915771
Process exited with code 137.
Output for 7.4.15
cufa with 0 args took 0.043540000915527 switch with 0 args took 0.052877902984619 unpack with 0 args took 0.046777963638306 cufa with 1 args took 0.062088012695312 switch with 1 args took 0.074337959289551 unpack with 1 args took 0.056658983230591 cufa with 2 args took 0.059838056564331 switch with 2 args took 0.084382057189941 unpack with 2 args took 0.058118104934692 cufa with 3 args took 0.069982051849365 switch with 3 args took 0.09181809425354 unpack with 3 args took 0.060734033584595 cufa with 4 args took 0.063501119613647 switch with 4 args took 0.097817182540894 unpack with 4 args took 0.059080839157104 cufa with 5 args took 0.069698095321655 switch with 5 args took 0.13780879974365 unpack with 5 args took 0.063260078430176 cufa with 100 args took 0.32329511642456 switch with 100 args took 0.34291195869446
Process exited with code 137.
Output for 7.4.14
cufa with 0 args took 0.043268918991089 switch with 0 args took 0.05261492729187 unpack with 0 args took 0.047182083129883 cufa with 1 args took 0.062958002090454 switch with 1 args took 0.07408881187439 unpack with 1 args took 0.057250022888184 cufa with 2 args took 0.063791036605835 switch with 2 args took 0.081385850906372 unpack with 2 args took 0.056923151016235 cufa with 3 args took 0.063528060913086 switch with 3 args took 0.096657991409302 unpack with 3 args took 0.059478998184204 cufa with 4 args took 0.065874099731445 switch with 4 args took 0.1033980846405 unpack with 4 args took 0.056934118270874 cufa with 5 args took 0.064742088317871 switch with 5 args took 0.13733911514282 unpack with 5 args took 0.061046123504639 cufa with 100 args took 0.32671499252319 switch with 100 args took 0.34616613388062
Process exited with code 137.
Output for 7.4.13
cufa with 0 args took 0.044867992401123 switch with 0 args took 0.047850847244263 unpack with 0 args took 0.047602891921997 cufa with 1 args took 0.051696062088013 switch with 1 args took 0.065242052078247 unpack with 1 args took 0.051102876663208 cufa with 2 args took 0.055453062057495 switch with 2 args took 0.077751874923706 unpack with 2 args took 0.052229881286621 cufa with 3 args took 0.056947946548462 switch with 3 args took 0.10082387924194 unpack with 3 args took 0.056463003158569 cufa with 4 args took 0.06010890007019 switch with 4 args took 0.091164827346802 unpack with 4 args took 0.057031869888306 cufa with 5 args took 0.065559864044189 switch with 5 args took 0.14105701446533 unpack with 5 args took 0.057940006256104 cufa with 100 args took 0.32626795768738 switch with 100 args took 0.33565998077393
Process exited with code 137.
Output for 7.4.12
cufa with 0 args took 0.041861057281494 switch with 0 args took 0.052965879440308 unpack with 0 args took 0.048102140426636 cufa with 1 args took 0.053972959518433 switch with 1 args took 0.071285009384155 unpack with 1 args took 0.057312965393066 cufa with 2 args took 0.05640697479248 switch with 2 args took 0.075985193252563 unpack with 2 args took 0.057416200637817 cufa with 3 args took 0.057171106338501 switch with 3 args took 0.085242986679077 unpack with 3 args took 0.059806108474731 cufa with 4 args took 0.05958104133606 switch with 4 args took 0.093941926956177 unpack with 4 args took 0.0623619556427 cufa with 5 args took 0.061005115509033 switch with 5 args took 0.13006401062012 unpack with 5 args took 0.063947200775146 cufa with 100 args took 0.32240414619446 switch with 100 args took 0.34013700485229
Process exited with code 137.
Output for 7.4.11
cufa with 0 args took 0.042172908782959 switch with 0 args took 0.051461935043335 unpack with 0 args took 0.043205976486206 cufa with 1 args took 0.056763887405396 switch with 1 args took 0.070317983627319 unpack with 1 args took 0.053723096847534 cufa with 2 args took 0.059814929962158 switch with 2 args took 0.080018043518066 unpack with 2 args took 0.055004835128784 cufa with 3 args took 0.063330888748169 switch with 3 args took 0.08420991897583 unpack with 3 args took 0.056919097900391 cufa with 4 args took 0.066519021987915 switch with 4 args took 0.091396808624268 unpack with 4 args took 0.06092095375061 cufa with 5 args took 0.069199800491333 switch with 5 args took 0.13229489326477 unpack with 5 args took 0.060712099075317 cufa with 100 args took 0.31901597976685 switch with 100 args took 0.35012793540955
Process exited with code 137.
Output for 7.4.10
cufa with 0 args took 0.045161962509155 switch with 0 args took 0.049983024597168 unpack with 0 args took 0.0414719581604 cufa with 1 args took 0.05289101600647 switch with 1 args took 0.064224004745483 unpack with 1 args took 0.051535844802856 cufa with 2 args took 0.057433128356934 switch with 2 args took 0.071652889251709 unpack with 2 args took 0.054790019989014 cufa with 3 args took 0.061701059341431 switch with 3 args took 0.080631971359253 unpack with 3 args took 0.054893970489502 cufa with 4 args took 0.063638925552368 switch with 4 args took 0.088084936141968 unpack with 4 args took 0.060662984848022 cufa with 5 args took 0.066128015518188 switch with 5 args took 0.12789797782898 unpack with 5 args took 0.06244683265686 cufa with 100 args took 0.32267189025879 switch with 100 args took 0.34560203552246
Process exited with code 137.
Output for 7.4.9
cufa with 0 args took 0.040833950042725 switch with 0 args took 0.049561977386475 unpack with 0 args took 0.0417320728302 cufa with 1 args took 0.050173044204712 switch with 1 args took 0.064690828323364 unpack with 1 args took 0.052999973297119 cufa with 2 args took 0.05299711227417 switch with 2 args took 0.072771072387695 unpack with 2 args took 0.057513952255249 cufa with 3 args took 0.056902885437012 switch with 3 args took 0.079905033111572 unpack with 3 args took 0.057394981384277 cufa with 4 args took 0.058307886123657 switch with 4 args took 0.087892055511475 unpack with 4 args took 0.058065176010132 cufa with 5 args took 0.060116052627563 switch with 5 args took 0.12890911102295 unpack with 5 args took 0.05927300453186 cufa with 100 args took 0.31503510475159 switch with 100 args took 0.34067797660828
Process exited with code 137.
Output for 7.4.8
cufa with 0 args took 0.043452024459839 switch with 0 args took 0.047730922698975 unpack with 0 args took 0.044692993164062 cufa with 1 args took 0.05616307258606 switch with 1 args took 0.067984104156494 unpack with 1 args took 0.05625319480896 cufa with 2 args took 0.05809211730957 switch with 2 args took 0.073473215103149 unpack with 2 args took 0.055850982666016 cufa with 3 args took 0.060902118682861 switch with 3 args took 0.078278064727783 unpack with 3 args took 0.060847997665405 cufa with 4 args took 0.062472105026245 switch with 4 args took 0.08723783493042 unpack with 4 args took 0.061782836914062 cufa with 5 args took 0.065630912780762 switch with 5 args took 0.12957787513733 unpack with 5 args took 0.065654993057251 cufa with 100 args took 0.32031106948853 switch with 100 args took 0.33996510505676
Process exited with code 137.
Output for 7.4.7
cufa with 0 args took 0.04075813293457 switch with 0 args took 0.05016303062439 unpack with 0 args took 0.044075012207031 cufa with 1 args took 0.049371957778931 switch with 1 args took 0.066752195358276 unpack with 1 args took 0.050999879837036 cufa with 2 args took 0.053145170211792 switch with 2 args took 0.07485294342041 unpack with 2 args took 0.054149150848389 cufa with 3 args took 0.05472993850708 switch with 3 args took 0.0816490650177 unpack with 3 args took 0.056960105895996 cufa with 4 args took 0.05667519569397 switch with 4 args took 0.090375185012817 unpack with 4 args took 0.057368040084839 cufa with 5 args took 0.059237003326416 switch with 5 args took 0.13217902183533 unpack with 5 args took 0.064320087432861 cufa with 100 args took 0.31854486465454 switch with 100 args took 0.3327260017395
Process exited with code 137.
Output for 7.4.6
cufa with 0 args took 0.041563987731934 switch with 0 args took 0.050797939300537 unpack with 0 args took 0.043476104736328 cufa with 1 args took 0.051623821258545 switch with 1 args took 0.067988872528076 unpack with 1 args took 0.051270008087158 cufa with 2 args took 0.053657054901123 switch with 2 args took 0.073518991470337 unpack with 2 args took 0.053354978561401 cufa with 3 args took 0.057410001754761 switch with 3 args took 0.081496953964233 unpack with 3 args took 0.054672002792358 cufa with 4 args took 0.057985067367554 switch with 4 args took 0.092720031738281 unpack with 4 args took 0.056228876113892 cufa with 5 args took 0.060665130615234 switch with 5 args took 0.13502097129822 unpack with 5 args took 0.057755947113037 cufa with 100 args took 0.32154607772827 switch with 100 args took 0.34000587463379
Process exited with code 137.
Output for 7.4.5
cufa with 0 args took 0.041873931884766 switch with 0 args took 0.049009084701538 unpack with 0 args took 0.044890165328979 cufa with 1 args took 0.051372051239014 switch with 1 args took 0.068413019180298 unpack with 1 args took 0.051403045654297 cufa with 2 args took 0.054664850234985 switch with 2 args took 0.07515811920166 unpack with 2 args took 0.054289102554321 cufa with 3 args took 0.056460857391357 switch with 3 args took 0.078326940536499 unpack with 3 args took 0.05596399307251 cufa with 4 args took 0.060018062591553 switch with 4 args took 0.087902069091797 unpack with 4 args took 0.059659957885742 cufa with 5 args took 0.061316967010498 switch with 5 args took 0.13033390045166 unpack with 5 args took 0.059370994567871 cufa with 100 args took 0.32000494003296 switch with 100 args took 0.33720111846924
Process exited with code 137.
Output for 7.4.4
cufa with 0 args took 0.044036865234375 switch with 0 args took 0.049338102340698 unpack with 0 args took 0.04295802116394 cufa with 1 args took 0.0556800365448 switch with 1 args took 0.069195985794067 unpack with 1 args took 0.050579071044922 cufa with 2 args took 0.053687810897827 switch with 2 args took 0.077372074127197 unpack with 2 args took 0.052233934402466 cufa with 3 args took 0.055954933166504 switch with 3 args took 0.083765029907227 unpack with 3 args took 0.054781913757324 cufa with 4 args took 0.058745145797729 switch with 4 args took 0.090939998626709 unpack with 4 args took 0.057811975479126 cufa with 5 args took 0.059724092483521 switch with 5 args took 0.12981414794922 unpack with 5 args took 0.060827970504761 cufa with 100 args took 0.31888294219971 switch with 100 args took 0.33714199066162
Process exited with code 137.
Output for 7.4.3
cufa with 0 args took 0.042582988739014 switch with 0 args took 0.055604934692383 unpack with 0 args took 0.044219970703125 cufa with 1 args took 0.055183887481689 switch with 1 args took 0.073036193847656 unpack with 1 args took 0.051486968994141 cufa with 2 args took 0.060261011123657 switch with 2 args took 0.079134941101074 unpack with 2 args took 0.053082227706909 cufa with 3 args took 0.061989068984985 switch with 3 args took 0.08481502532959 unpack with 3 args took 0.055740833282471 cufa with 4 args took 0.062861919403076 switch with 4 args took 0.094652891159058 unpack with 4 args took 0.058135032653809 cufa with 5 args took 0.065391063690186 switch with 5 args took 0.13384509086609 unpack with 5 args took 0.060290813446045 cufa with 100 args took 0.32248401641846 switch with 100 args took 0.34196782112122
Process exited with code 137.
Output for 7.4.2
cufa with 0 args took 0.04027795791626 switch with 0 args took 0.046374797821045 unpack with 0 args took 0.041528940200806 cufa with 1 args took 0.052166938781738 switch with 1 args took 0.069036960601807 unpack with 1 args took 0.049590110778809 cufa with 2 args took 0.055992841720581 switch with 2 args took 0.074652910232544 unpack with 2 args took 0.050036907196045 cufa with 3 args took 0.057825803756714 switch with 3 args took 0.084769010543823 unpack with 3 args took 0.053812026977539 cufa with 4 args took 0.058043956756592 switch with 4 args took 0.09207010269165 unpack with 4 args took 0.059053897857666 cufa with 5 args took 0.061460971832275 switch with 5 args took 0.12813687324524 unpack with 5 args took 0.060545921325684 cufa with 100 args took 0.32120418548584 switch with 100 args took 0.33776593208313
Process exited with code 137.
Output for 7.4.1
cufa with 0 args took 0.043384075164795 switch with 0 args took 0.048308849334717 unpack with 0 args took 0.041488885879517 cufa with 1 args took 0.054001808166504 switch with 1 args took 0.066909074783325 unpack with 1 args took 0.052419185638428 cufa with 2 args took 0.056787014007568 switch with 2 args took 0.073103904724121 unpack with 2 args took 0.052210092544556 cufa with 3 args took 0.060128211975098 switch with 3 args took 0.082845211029053 unpack with 3 args took 0.055307865142822 cufa with 4 args took 0.062103986740112 switch with 4 args took 0.090220928192139 unpack with 4 args took 0.056484937667847 cufa with 5 args took 0.069694042205811 switch with 5 args took 0.12645697593689 unpack with 5 args took 0.059373140335083 cufa with 100 args took 0.32276296615601 switch with 100 args took 0.34950518608093
Process exited with code 137.
Output for 7.4.0
cufa with 0 args took 0.04591178894043 switch with 0 args took 0.051407098770142 unpack with 0 args took 0.040805816650391 cufa with 1 args took 0.058118104934692 switch with 1 args took 0.065906047821045 unpack with 1 args took 0.052165985107422 cufa with 2 args took 0.060402870178223 switch with 2 args took 0.073264122009277 unpack with 2 args took 0.054518938064575 cufa with 3 args took 0.067758083343506 switch with 3 args took 0.086031913757324 unpack with 3 args took 0.054553985595703 cufa with 4 args took 0.065276145935059 switch with 4 args took 0.088429927825928 unpack with 4 args took 0.062946081161499 cufa with 5 args took 0.067592859268188 switch with 5 args took 0.12870311737061 unpack with 5 args took 0.064823150634766 cufa with 100 args took 0.32326102256775 switch with 100 args took 0.34498596191406
Process exited with code 137.
Output for 7.3.30
cufa with 0 args took 0.040260076522827 switch with 0 args took 0.046623945236206 unpack with 0 args took 0.038422107696533 cufa with 1 args took 0.047562122344971 switch with 1 args took 0.063079118728638 unpack with 1 args took 0.046217918395996 cufa with 2 args took 0.053936958312988 switch with 2 args took 0.070873022079468 unpack with 2 args took 0.049237012863159 cufa with 3 args took 0.056094884872437 switch with 3 args took 0.078163862228394 unpack with 3 args took 0.051115036010742 cufa with 4 args took 0.058067083358765 switch with 4 args took 0.087970018386841 unpack with 4 args took 0.052402973175049 cufa with 5 args took 0.059720993041992 switch with 5 args took 0.12806081771851 unpack with 5 args took 0.056006908416748 cufa with 100 args took 0.31625699996948 switch with 100 args took 0.33780002593994
Process exited with code 137.
Output for 7.3.29
cufa with 0 args took 0.036556959152222 switch with 0 args took 0.049688100814819 unpack with 0 args took 0.037414073944092 cufa with 1 args took 0.049285173416138 switch with 1 args took 0.072184801101685 unpack with 1 args took 0.047852039337158 cufa with 2 args took 0.048448085784912 switch with 2 args took 0.078758001327515 unpack with 2 args took 0.050585985183716 cufa with 3 args took 0.051532983779907 switch with 3 args took 0.084255933761597 unpack with 3 args took 0.05220890045166 cufa with 4 args took 0.054006099700928 switch with 4 args took 0.095010995864868 unpack with 4 args took 0.052255153656006 cufa with 5 args took 0.054603815078735 switch with 5 args took 0.13369512557983 unpack with 5 args took 0.055871963500977 cufa with 100 args took 0.31380391120911 switch with 100 args took 0.33330917358398
Process exited with code 137.
Output for 7.3.28
cufa with 0 args took 0.037087202072144 switch with 0 args took 0.045984983444214 unpack with 0 args took 0.034937143325806 cufa with 1 args took 0.049710035324097 switch with 1 args took 0.065027952194214 unpack with 1 args took 0.045500993728638 cufa with 2 args took 0.052367210388184 switch with 2 args took 0.073203086853027 unpack with 2 args took 0.047851800918579 cufa with 3 args took 0.055450916290283 switch with 3 args took 0.083088874816895 unpack with 3 args took 0.051355838775635 cufa with 4 args took 0.05803394317627 switch with 4 args took 0.094504833221436 unpack with 4 args took 0.056042909622192 cufa with 5 args took 0.06032395362854 switch with 5 args took 0.13051795959473 unpack with 5 args took 0.060689926147461 cufa with 100 args took 0.31514692306519 switch with 100 args took 0.33349895477295
Process exited with code 137.
Output for 7.3.27
cufa with 0 args took 0.03961706161499 switch with 0 args took 0.04522705078125 unpack with 0 args took 0.033878087997437 cufa with 1 args took 0.050673961639404 switch with 1 args took 0.063192129135132 unpack with 1 args took 0.045756101608276 cufa with 2 args took 0.053930997848511 switch with 2 args took 0.068029880523682 unpack with 2 args took 0.048743963241577 cufa with 3 args took 0.05613899230957 switch with 3 args took 0.078677892684937 unpack with 3 args took 0.051555871963501 cufa with 4 args took 0.058726072311401 switch with 4 args took 0.088586091995239 unpack with 4 args took 0.05243992805481 cufa with 5 args took 0.062784194946289 switch with 5 args took 0.1293740272522 unpack with 5 args took 0.055774211883545 cufa with 100 args took 0.31480693817139 switch with 100 args took 0.34013414382935
Process exited with code 137.
Output for 7.3.26
cufa with 0 args took 0.036396026611328 switch with 0 args took 0.048830032348633 unpack with 0 args took 0.036159992218018 cufa with 1 args took 0.048635005950928 switch with 1 args took 0.072520017623901 unpack with 1 args took 0.046674013137817 cufa with 2 args took 0.048561096191406 switch with 2 args took 0.080235958099365 unpack with 2 args took 0.04921293258667 cufa with 3 args took 0.051249980926514 switch with 3 args took 0.087043046951294 unpack with 3 args took 0.051887035369873 cufa with 4 args took 0.053345918655396 switch with 4 args took 0.095554113388062 unpack with 4 args took 0.053015947341919 cufa with 5 args took 0.054526090621948 switch with 5 args took 0.13217210769653 unpack with 5 args took 0.056020975112915 cufa with 100 args took 0.31366896629333 switch with 100 args took 0.33326387405396
Process exited with code 137.
Output for 7.3.25
cufa with 0 args took 0.039790868759155 switch with 0 args took 0.049823999404907 unpack with 0 args took 0.03734302520752 cufa with 1 args took 0.05090594291687 switch with 1 args took 0.069103002548218 unpack with 1 args took 0.046290874481201 cufa with 2 args took 0.054091930389404 switch with 2 args took 0.076006889343262 unpack with 2 args took 0.048423051834106 cufa with 3 args took 0.056029081344604 switch with 3 args took 0.083318948745728 unpack with 3 args took 0.051547050476074 cufa with 4 args took 0.05834698677063 switch with 4 args took 0.093924999237061 unpack with 4 args took 0.053696870803833 cufa with 5 args took 0.060878992080688 switch with 5 args took 0.13366508483887 unpack with 5 args took 0.055840015411377 cufa with 100 args took 0.31891918182373 switch with 100 args took 0.3372790813446
Process exited with code 137.
Output for 7.3.24
cufa with 0 args took 0.034489870071411 switch with 0 args took 0.048411846160889 unpack with 0 args took 0.034166097640991 cufa with 1 args took 0.047805070877075 switch with 1 args took 0.066243886947632 unpack with 1 args took 0.045756101608276 cufa with 2 args took 0.048756837844849 switch with 2 args took 0.075479030609131 unpack with 2 args took 0.047569036483765 cufa with 3 args took 0.051074981689453 switch with 3 args took 0.081398010253906 unpack with 3 args took 0.05219292640686 cufa with 4 args took 0.052917003631592 switch with 4 args took 0.090524196624756 unpack with 4 args took 0.051930904388428 cufa with 5 args took 0.053606986999512 switch with 5 args took 0.13134098052979 unpack with 5 args took 0.055927038192749 cufa with 100 args took 0.31753182411194 switch with 100 args took 0.34217119216919
Process exited with code 137.
Output for 7.3.23
cufa with 0 args took 0.036249876022339 switch with 0 args took 0.045374155044556 unpack with 0 args took 0.037662029266357 cufa with 1 args took 0.048296928405762 switch with 1 args took 0.065165042877197 unpack with 1 args took 0.0489821434021 cufa with 2 args took 0.052021026611328 switch with 2 args took 0.071417093276978 unpack with 2 args took 0.051290988922119 cufa with 3 args took 0.056240081787109 switch with 3 args took 0.078470230102539 unpack with 3 args took 0.052312135696411 cufa with 4 args took 0.057480096817017 switch with 4 args took 0.089998960494995 unpack with 4 args took 0.053807973861694 cufa with 5 args took 0.060598134994507 switch with 5 args took 0.13132786750793 unpack with 5 args took 0.056260108947754 cufa with 100 args took 0.3202440738678 switch with 100 args took 0.33814907073975
Process exited with code 137.
Output for 7.3.22
cufa with 0 args took 0.036653995513916 switch with 0 args took 0.04729700088501 unpack with 0 args took 0.033087015151978 cufa with 1 args took 0.052544116973877 switch with 1 args took 0.069958209991455 unpack with 1 args took 0.04726505279541 cufa with 2 args took 0.056205987930298 switch with 2 args took 0.072915077209473 unpack with 2 args took 0.052455186843872 cufa with 3 args took 0.057041883468628 switch with 3 args took 0.07920503616333 unpack with 3 args took 0.052595853805542 cufa with 4 args took 0.059300899505615 switch with 4 args took 0.092560052871704 unpack with 4 args took 0.055369138717651 cufa with 5 args took 0.062200784683228 switch with 5 args took 0.13068795204163 unpack with 5 args took 0.057636976242065 cufa with 100 args took 0.32149696350098 switch with 100 args took 0.33802819252014
Process exited with code 137.
Output for 7.3.21
cufa with 0 args took 0.036648988723755 switch with 0 args took 0.046121120452881 unpack with 0 args took 0.032853126525879 cufa with 1 args took 0.045456171035767 switch with 1 args took 0.064208030700684 unpack with 1 args took 0.049497127532959 cufa with 2 args took 0.049616813659668 switch with 2 args took 0.073430061340332 unpack with 2 args took 0.051659107208252 cufa with 3 args took 0.051835060119629 switch with 3 args took 0.080023050308228 unpack with 3 args took 0.054027080535889 cufa with 4 args took 0.052792072296143 switch with 4 args took 0.0882887840271 unpack with 4 args took 0.054543972015381 cufa with 5 args took 0.053338050842285 switch with 5 args took 0.12678194046021 unpack with 5 args took 0.056341886520386 cufa with 100 args took 0.3122730255127 switch with 100 args took 0.33527612686157
Process exited with code 137.
Output for 7.3.20
cufa with 0 args took 0.035754919052124 switch with 0 args took 0.047627925872803 unpack with 0 args took 0.034404039382935 cufa with 1 args took 0.047569990158081 switch with 1 args took 0.068238019943237 unpack with 1 args took 0.047006130218506 cufa with 2 args took 0.051634073257446 switch with 2 args took 0.078323125839233 unpack with 2 args took 0.049985885620117 cufa with 3 args took 0.053752899169922 switch with 3 args took 0.081203937530518 unpack with 3 args took 0.04948902130127 cufa with 4 args took 0.055761098861694 switch with 4 args took 0.092466115951538 unpack with 4 args took 0.052628993988037 cufa with 5 args took 0.057723045349121 switch with 5 args took 0.1343719959259 unpack with 5 args took 0.057682037353516 cufa with 100 args took 0.31859683990479 switch with 100 args took 0.33822393417358
Process exited with code 137.
Output for 7.3.19
cufa with 0 args took 0.036370992660522 switch with 0 args took 0.048846960067749 unpack with 0 args took 0.036375999450684 cufa with 1 args took 0.047578096389771 switch with 1 args took 0.067731142044067 unpack with 1 args took 0.047775030136108 cufa with 2 args took 0.049932956695557 switch with 2 args took 0.071741104125977 unpack with 2 args took 0.050371885299683 cufa with 3 args took 0.053103923797607 switch with 3 args took 0.08163595199585 unpack with 3 args took 0.052488088607788 cufa with 4 args took 0.056465864181519 switch with 4 args took 0.091519832611084 unpack with 4 args took 0.055202007293701 cufa with 5 args took 0.057667970657349 switch with 5 args took 0.12802004814148 unpack with 5 args took 0.058277130126953 cufa with 100 args took 0.31364417076111 switch with 100 args took 0.3386070728302
Process exited with code 137.
Output for 7.3.18
cufa with 0 args took 0.036486864089966 switch with 0 args took 0.048349857330322 unpack with 0 args took 0.035521984100342 cufa with 1 args took 0.048482894897461 switch with 1 args took 0.067496061325073 unpack with 1 args took 0.050944089889526 cufa with 2 args took 0.050447940826416 switch with 2 args took 0.073017835617065 unpack with 2 args took 0.050972938537598 cufa with 3 args took 0.054066896438599 switch with 3 args took 0.078855991363525 unpack with 3 args took 0.052325963973999 cufa with 4 args took 0.055620908737183 switch with 4 args took 0.090759038925171 unpack with 4 args took 0.05284595489502 cufa with 5 args took 0.058438062667847 switch with 5 args took 0.13093614578247 unpack with 5 args took 0.057256937026978 cufa with 100 args took 0.31432199478149 switch with 100 args took 0.33942413330078
Process exited with code 137.
Output for 7.3.17
cufa with 0 args took 0.03459095954895 switch with 0 args took 0.045741081237793 unpack with 0 args took 0.035924911499023 cufa with 1 args took 0.050428152084351 switch with 1 args took 0.062034130096436 unpack with 1 args took 0.04679012298584 cufa with 2 args took 0.050527095794678 switch with 2 args took 0.068920850753784 unpack with 2 args took 0.048479080200195 cufa with 3 args took 0.053092002868652 switch with 3 args took 0.078969955444336 unpack with 3 args took 0.049666166305542 cufa with 4 args took 0.053681135177612 switch with 4 args took 0.088935136795044 unpack with 4 args took 0.052701950073242 cufa with 5 args took 0.059012889862061 switch with 5 args took 0.1263599395752 unpack with 5 args took 0.057174921035767 cufa with 100 args took 0.31865620613098 switch with 100 args took 0.33502602577209
Process exited with code 137.
Output for 7.3.16
cufa with 0 args took 0.037205934524536 switch with 0 args took 0.048321962356567 unpack with 0 args took 0.032150030136108 cufa with 1 args took 0.045419931411743 switch with 1 args took 0.061398983001709 unpack with 1 args took 0.044857025146484 cufa with 2 args took 0.048250913619995 switch with 2 args took 0.067701101303101 unpack with 2 args took 0.04735803604126 cufa with 3 args took 0.052700996398926 switch with 3 args took 0.077184915542603 unpack with 3 args took 0.049790143966675 cufa with 4 args took 0.05309796333313 switch with 4 args took 0.088052034378052 unpack with 4 args took 0.051372051239014 cufa with 5 args took 0.054272890090942 switch with 5 args took 0.12413191795349 unpack with 5 args took 0.0558021068573 cufa with 100 args took 0.31419205665588 switch with 100 args took 0.33576989173889
Process exited with code 137.
Output for 7.3.15
cufa with 0 args took 0.035515069961548 switch with 0 args took 0.049700975418091 unpack with 0 args took 0.041882038116455 cufa with 1 args took 0.04781699180603 switch with 1 args took 0.065783977508545 unpack with 1 args took 0.053231000900269 cufa with 2 args took 0.052089929580688 switch with 2 args took 0.074352979660034 unpack with 2 args took 0.055256128311157 cufa with 3 args took 0.053287029266357 switch with 3 args took 0.084131002426147 unpack with 3 args took 0.056365013122559 cufa with 4 args took 0.056149959564209 switch with 4 args took 0.09614086151123 unpack with 4 args took 0.058795928955078 cufa with 5 args took 0.058158159255981 switch with 5 args took 0.13479495048523 unpack with 5 args took 0.062268972396851 cufa with 100 args took 0.31524705886841 switch with 100 args took 0.33603596687317
Process exited with code 137.
Output for 7.3.14
cufa with 0 args took 0.037451982498169 switch with 0 args took 0.047723054885864 unpack with 0 args took 0.034150123596191 cufa with 1 args took 0.049165964126587 switch with 1 args took 0.063739061355591 unpack with 1 args took 0.045912981033325 cufa with 2 args took 0.05170202255249 switch with 2 args took 0.071027040481567 unpack with 2 args took 0.048117160797119 cufa with 3 args took 0.052222967147827 switch with 3 args took 0.078153133392334 unpack with 3 args took 0.050332069396973 cufa with 4 args took 0.055518865585327 switch with 4 args took 0.091691970825195 unpack with 4 args took 0.052995920181274 cufa with 5 args took 0.063275814056396 switch with 5 args took 0.12731695175171 unpack with 5 args took 0.057027101516724 cufa with 100 args took 0.31576991081238 switch with 100 args took 0.33605480194092
Process exited with code 137.
Output for 7.3.13
cufa with 0 args took 0.034574031829834 switch with 0 args took 0.048080205917358 unpack with 0 args took 0.033138036727905 cufa with 1 args took 0.053007125854492 switch with 1 args took 0.06696891784668 unpack with 1 args took 0.047555208206177 cufa with 2 args took 0.055844068527222 switch with 2 args took 0.071958065032959 unpack with 2 args took 0.050264120101929 cufa with 3 args took 0.058528900146484 switch with 3 args took 0.078969955444336 unpack with 3 args took 0.050445079803467 cufa with 4 args took 0.060829162597656 switch with 4 args took 0.090867042541504 unpack with 4 args took 0.053573131561279 cufa with 5 args took 0.062763929367065 switch with 5 args took 0.12954902648926 unpack with 5 args took 0.057203054428101 cufa with 100 args took 0.3263111114502 switch with 100 args took 0.34748911857605
Process exited with code 137.
Output for 7.3.12
cufa with 0 args took 0.037538051605225 switch with 0 args took 0.0487060546875 unpack with 0 args took 0.038627147674561 cufa with 1 args took 0.047009944915771 switch with 1 args took 0.066080808639526 unpack with 1 args took 0.051813840866089 cufa with 2 args took 0.052540063858032 switch with 2 args took 0.073000192642212 unpack with 2 args took 0.053799152374268 cufa with 3 args took 0.054338932037354 switch with 3 args took 0.082014083862305 unpack with 3 args took 0.053762912750244 cufa with 4 args took 0.057124853134155 switch with 4 args took 0.090779066085815 unpack with 4 args took 0.055736064910889 cufa with 5 args took 0.059180974960327 switch with 5 args took 0.12848901748657 unpack with 5 args took 0.057972192764282 cufa with 100 args took 0.31424403190613 switch with 100 args took 0.33895111083984
Process exited with code 137.
Output for 7.3.11
cufa with 0 args took 0.033050060272217 switch with 0 args took 0.05115795135498 unpack with 0 args took 0.033550977706909 cufa with 1 args took 0.049803972244263 switch with 1 args took 0.067762851715088 unpack with 1 args took 0.047308206558228 cufa with 2 args took 0.052328109741211 switch with 2 args took 0.070730924606323 unpack with 2 args took 0.048786878585815 cufa with 3 args took 0.052516222000122 switch with 3 args took 0.080106019973755 unpack with 3 args took 0.051043033599854 cufa with 4 args took 0.053124189376831 switch with 4 args took 0.090373992919922 unpack with 4 args took 0.054364204406738 cufa with 5 args took 0.057177066802979 switch with 5 args took 0.12866592407227 unpack with 5 args took 0.056283950805664 cufa with 100 args took 0.31308388710022 switch with 100 args took 0.33644700050354
Process exited with code 137.
Output for 7.3.10
cufa with 0 args took 0.03681492805481 switch with 0 args took 0.044713020324707 unpack with 0 args took 0.035339117050171 cufa with 1 args took 0.048902034759521 switch with 1 args took 0.064056873321533 unpack with 1 args took 0.047211885452271 cufa with 2 args took 0.053527116775513 switch with 2 args took 0.073176860809326 unpack with 2 args took 0.046738862991333 cufa with 3 args took 0.054298162460327 switch with 3 args took 0.078135013580322 unpack with 3 args took 0.047974824905396 cufa with 4 args took 0.057569980621338 switch with 4 args took 0.090061902999878 unpack with 4 args took 0.051653861999512 cufa with 5 args took 0.057082176208496 switch with 5 args took 0.12501406669617 unpack with 5 args took 0.055920124053955 cufa with 100 args took 0.31183815002441 switch with 100 args took 0.33226418495178
Process exited with code 137.
Output for 7.3.9
cufa with 0 args took 0.036529064178467 switch with 0 args took 0.045830011367798 unpack with 0 args took 0.03600811958313 cufa with 1 args took 0.046436071395874 switch with 1 args took 0.062945127487183 unpack with 1 args took 0.046633958816528 cufa with 2 args took 0.05085015296936 switch with 2 args took 0.069257020950317 unpack with 2 args took 0.049490928649902 cufa with 3 args took 0.052902936935425 switch with 3 args took 0.077987909317017 unpack with 3 args took 0.051532030105591 cufa with 4 args took 0.054998874664307 switch with 4 args took 0.088840007781982 unpack with 4 args took 0.052283048629761 cufa with 5 args took 0.056807994842529 switch with 5 args took 0.12422204017639 unpack with 5 args took 0.056540012359619 cufa with 100 args took 0.31523084640503 switch with 100 args took 0.33743190765381
Process exited with code 137.
Output for 7.3.8
cufa with 0 args took 0.035869121551514 switch with 0 args took 0.050256013870239 unpack with 0 args took 0.037666082382202 cufa with 1 args took 0.046791076660156 switch with 1 args took 0.065124988555908 unpack with 1 args took 0.048581123352051 cufa with 2 args took 0.052383899688721 switch with 2 args took 0.07225513458252 unpack with 2 args took 0.051551103591919 cufa with 3 args took 0.054919004440308 switch with 3 args took 0.078834056854248 unpack with 3 args took 0.052329063415527 cufa with 4 args took 0.055224895477295 switch with 4 args took 0.090573072433472 unpack with 4 args took 0.052999973297119 cufa with 5 args took 0.057245016098022 switch with 5 args took 0.12617993354797 unpack with 5 args took 0.056743144989014 cufa with 100 args took 0.31551098823547 switch with 100 args took 0.33516979217529
Process exited with code 137.
Output for 7.3.7
cufa with 0 args took 0.044989824295044 switch with 0 args took 0.050050973892212 unpack with 0 args took 0.038245916366577 cufa with 1 args took 0.053659200668335 switch with 1 args took 0.068489074707031 unpack with 1 args took 0.046627998352051 cufa with 2 args took 0.05321216583252 switch with 2 args took 0.068169832229614 unpack with 2 args took 0.048170804977417 cufa with 3 args took 0.05342698097229 switch with 3 args took 0.077492952346802 unpack with 3 args took 0.050076007843018 cufa with 4 args took 0.055357933044434 switch with 4 args took 0.08783221244812 unpack with 4 args took 0.052153825759888 cufa with 5 args took 0.05686092376709 switch with 5 args took 0.12670087814331 unpack with 5 args took 0.056217908859253 cufa with 100 args took 0.31670093536377 switch with 100 args took 0.34116697311401
Process exited with code 137.
Output for 7.3.6
cufa with 0 args took 0.038961887359619 switch with 0 args took 0.046547174453735 unpack with 0 args took 0.034229040145874 cufa with 1 args took 0.051888942718506 switch with 1 args took 0.062351942062378 unpack with 1 args took 0.046633005142212 cufa with 2 args took 0.05361008644104 switch with 2 args took 0.069211959838867 unpack with 2 args took 0.048890113830566 cufa with 3 args took 0.056317090988159 switch with 3 args took 0.076929092407227 unpack with 3 args took 0.051846027374268 cufa with 4 args took 0.057976007461548 switch with 4 args took 0.088342189788818 unpack with 4 args took 0.053479194641113 cufa with 5 args took 0.065577983856201 switch with 5 args took 0.12541007995605 unpack with 5 args took 0.056142091751099 cufa with 100 args took 0.32016611099243 switch with 100 args took 0.33901619911194
Process exited with code 137.
Output for 7.3.5
cufa with 0 args took 0.03602409362793 switch with 0 args took 0.049901008605957 unpack with 0 args took 0.036870002746582 cufa with 1 args took 0.048601865768433 switch with 1 args took 0.066251993179321 unpack with 1 args took 0.048534870147705 cufa with 2 args took 0.050276041030884 switch with 2 args took 0.075016975402832 unpack with 2 args took 0.049472093582153 cufa with 3 args took 0.055673837661743 switch with 3 args took 0.079913139343262 unpack with 3 args took 0.054292917251587 cufa with 4 args took 0.058390140533447 switch with 4 args took 0.093863010406494 unpack with 4 args took 0.052640914916992 cufa with 5 args took 0.060082912445068 switch with 5 args took 0.13263702392578 unpack with 5 args took 0.056957006454468 cufa with 100 args took 0.31826996803284 switch with 100 args took 0.33840584754944
Process exited with code 137.
Output for 7.3.4
cufa with 0 args took 0.036221981048584 switch with 0 args took 0.046828985214233 unpack with 0 args took 0.036065816879272 cufa with 1 args took 0.050554037094116 switch with 1 args took 0.067395925521851 unpack with 1 args took 0.045190095901489 cufa with 2 args took 0.05475902557373 switch with 2 args took 0.0714111328125 unpack with 2 args took 0.048679828643799 cufa with 3 args took 0.053930997848511 switch with 3 args took 0.077299118041992 unpack with 3 args took 0.050839900970459 cufa with 4 args took 0.0590980052948 switch with 4 args took 0.088316917419434 unpack with 4 args took 0.052180051803589 cufa with 5 args took 0.056523084640503 switch with 5 args took 0.12808895111084 unpack with 5 args took 0.056027173995972 cufa with 100 args took 0.31988596916199 switch with 100 args took 0.3366379737854
Process exited with code 137.
Output for 7.3.3
cufa with 0 args took 0.037844896316528 switch with 0 args took 0.048450946807861 unpack with 0 args took 0.040008068084717 cufa with 1 args took 0.051638126373291 switch with 1 args took 0.062057018280029 unpack with 1 args took 0.048204898834229 cufa with 2 args took 0.054184913635254 switch with 2 args took 0.068926095962524 unpack with 2 args took 0.05076003074646 cufa with 3 args took 0.057020902633667 switch with 3 args took 0.078804969787598 unpack with 3 args took 0.054311990737915 cufa with 4 args took 0.058440923690796 switch with 4 args took 0.090235948562622 unpack with 4 args took 0.058606147766113 cufa with 5 args took 0.062052965164185 switch with 5 args took 0.12537217140198 unpack with 5 args took 0.063236951828003 cufa with 100 args took 0.3172779083252 switch with 100 args took 0.34261894226074
Process exited with code 137.
Output for 7.3.2
cufa with 0 args took 0.037168979644775 switch with 0 args took 0.048500061035156 unpack with 0 args took 0.038218975067139 cufa with 1 args took 0.046979904174805 switch with 1 args took 0.064067840576172 unpack with 1 args took 0.049695014953613 cufa with 2 args took 0.050986051559448 switch with 2 args took 0.072410106658936 unpack with 2 args took 0.05112099647522 cufa with 3 args took 0.052574872970581 switch with 3 args took 0.079328060150146 unpack with 3 args took 0.053198099136353 cufa with 4 args took 0.054890155792236 switch with 4 args took 0.089761972427368 unpack with 4 args took 0.054903030395508 cufa with 5 args took 0.057950019836426 switch with 5 args took 0.1291389465332 unpack with 5 args took 0.055984973907471 cufa with 100 args took 0.31246495246887 switch with 100 args took 0.33433794975281
Process exited with code 137.
Output for 7.3.1
cufa with 0 args took 0.037137031555176 switch with 0 args took 0.047690868377686 unpack with 0 args took 0.038382053375244 cufa with 1 args took 0.050279140472412 switch with 1 args took 0.071424007415771 unpack with 1 args took 0.050327062606812 cufa with 2 args took 0.053408861160278 switch with 2 args took 0.074545860290527 unpack with 2 args took 0.050525903701782 cufa with 3 args took 0.058364152908325 switch with 3 args took 0.083611011505127 unpack with 3 args took 0.052961111068726 cufa with 4 args took 0.058861017227173 switch with 4 args took 0.091054916381836 unpack with 4 args took 0.055430889129639 cufa with 5 args took 0.061233043670654 switch with 5 args took 0.1318690776825 unpack with 5 args took 0.061059951782227 cufa with 100 args took 0.32131505012512 switch with 100 args took 0.3555691242218
Process exited with code 137.
Output for 7.3.0
cufa with 0 args took 0.041076183319092 switch with 0 args took 0.047681093215942 unpack with 0 args took 0.036170959472656 cufa with 1 args took 0.049400091171265 switch with 1 args took 0.066812038421631 unpack with 1 args took 0.052211046218872 cufa with 2 args took 0.052254199981689 switch with 2 args took 0.074274063110352 unpack with 2 args took 0.048408031463623 cufa with 3 args took 0.056859970092773 switch with 3 args took 0.081874847412109 unpack with 3 args took 0.053237915039062 cufa with 4 args took 0.05994701385498 switch with 4 args took 0.090097904205322 unpack with 4 args took 0.05601692199707 cufa with 5 args took 0.062934160232544 switch with 5 args took 0.12901902198792 unpack with 5 args took 0.0589439868927 cufa with 100 args took 0.32055306434631 switch with 100 args took 0.34858417510986
Process exited with code 137.
Output for 7.2.34
cufa with 0 args took 0.041818857192993 switch with 0 args took 0.052474975585938 unpack with 0 args took 0.040156126022339 cufa with 1 args took 0.049868106842041 switch with 1 args took 0.063677072525024 unpack with 1 args took 0.048684120178223 cufa with 2 args took 0.051005840301514 switch with 2 args took 0.070373058319092 unpack with 2 args took 0.052796125411987 cufa with 3 args took 0.053992033004761 switch with 3 args took 0.081830024719238 unpack with 3 args took 0.056262969970703 cufa with 4 args took 0.060144186019897 switch with 4 args took 0.091670036315918 unpack with 4 args took 0.056473970413208 cufa with 5 args took 0.058848142623901 switch with 5 args took 0.10210990905762 unpack with 5 args took 0.059710025787354 cufa with 100 args took 0.30900096893311 switch with 100 args took 0.32211899757385
Process exited with code 137.
Output for 7.2.33
cufa with 0 args took 0.041282176971436 switch with 0 args took 0.051328182220459 unpack with 0 args took 0.041818141937256 cufa with 1 args took 0.048741102218628 switch with 1 args took 0.063968896865845 unpack with 1 args took 0.048663854598999 cufa with 2 args took 0.050636053085327 switch with 2 args took 0.071262121200562 unpack with 2 args took 0.051208019256592 cufa with 3 args took 0.052997827529907 switch with 3 args took 0.081483125686646 unpack with 3 args took 0.05430793762207 cufa with 4 args took 0.056196928024292 switch with 4 args took 0.089494943618774 unpack with 4 args took 0.057891130447388 cufa with 5 args took 0.058225870132446 switch with 5 args took 0.098951101303101 unpack with 5 args took 0.059962034225464 cufa with 100 args took 0.29922389984131 switch with 100 args took 0.31748700141907
Process exited with code 137.
Output for 7.2.32
cufa with 0 args took 0.043314933776855 switch with 0 args took 0.052778005599976 unpack with 0 args took 0.041757106781006 cufa with 1 args took 0.050558090209961 switch with 1 args took 0.066969156265259 unpack with 1 args took 0.050901889801025 cufa with 2 args took 0.052187919616699 switch with 2 args took 0.069978952407837 unpack with 2 args took 0.05250096321106 cufa with 3 args took 0.055884122848511 switch with 3 args took 0.079118967056274 unpack with 3 args took 0.055668115615845 cufa with 4 args took 0.058857917785645 switch with 4 args took 0.088402986526489 unpack with 4 args took 0.058274984359741 cufa with 5 args took 0.059782028198242 switch with 5 args took 0.096273899078369 unpack with 5 args took 0.059755086898804 cufa with 100 args took 0.30036687850952 switch with 100 args took 0.32305192947388
Process exited with code 137.
Output for 7.2.31
cufa with 0 args took 0.040969848632812 switch with 0 args took 0.050035953521729 unpack with 0 args took 0.038286924362183 cufa with 1 args took 0.048736095428467 switch with 1 args took 0.061271905899048 unpack with 1 args took 0.050940036773682 cufa with 2 args took 0.050615072250366 switch with 2 args took 0.067548036575317 unpack with 2 args took 0.053331136703491 cufa with 3 args took 0.054250001907349 switch with 3 args took 0.075011014938354 unpack with 3 args took 0.057283878326416 cufa with 4 args took 0.055731058120728 switch with 4 args took 0.084767818450928 unpack with 4 args took 0.057615995407104 cufa with 5 args took 0.056389093399048 switch with 5 args took 0.093024015426636 unpack with 5 args took 0.059840202331543 cufa with 100 args took 0.300616979599 switch with 100 args took 0.31627702713013
Process exited with code 137.
Output for 7.2.30
cufa with 0 args took 0.040753841400146 switch with 0 args took 0.049148082733154 unpack with 0 args took 0.038262128829956 cufa with 1 args took 0.047606945037842 switch with 1 args took 0.060140132904053 unpack with 1 args took 0.049621105194092 cufa with 2 args took 0.049714088439941 switch with 2 args took 0.068053960800171 unpack with 2 args took 0.053768157958984 cufa with 3 args took 0.052543163299561 switch with 3 args took 0.07525897026062 unpack with 3 args took 0.056832075119019 cufa with 4 args took 0.05494499206543 switch with 4 args took 0.083935976028442 unpack with 4 args took 0.059503078460693 cufa with 5 args took 0.057008028030396 switch with 5 args took 0.093309879302979 unpack with 5 args took 0.060389041900635 cufa with 100 args took 0.30125999450684 switch with 100 args took 0.31658601760864
Process exited with code 137.
Output for 7.2.29
cufa with 0 args took 0.042356014251709 switch with 0 args took 0.049916982650757 unpack with 0 args took 0.036525964736938 cufa with 1 args took 0.046419858932495 switch with 1 args took 0.057957172393799 unpack with 1 args took 0.044492959976196 cufa with 2 args took 0.050217866897583 switch with 2 args took 0.064624071121216 unpack with 2 args took 0.04671311378479 cufa with 3 args took 0.052151203155518 switch with 3 args took 0.07349681854248 unpack with 3 args took 0.04882287979126 cufa with 4 args took 0.055177211761475 switch with 4 args took 0.082057952880859 unpack with 4 args took 0.052731990814209 cufa with 5 args took 0.05519700050354 switch with 5 args took 0.091135025024414 unpack with 5 args took 0.057330131530762 cufa with 100 args took 0.29970693588257 switch with 100 args took 0.31380796432495
Process exited with code 137.
Output for 7.2.28
cufa with 0 args took 0.039171934127808 switch with 0 args took 0.047708034515381 unpack with 0 args took 0.039927005767822 cufa with 1 args took 0.04580283164978 switch with 1 args took 0.058336019515991 unpack with 1 args took 0.044991970062256 cufa with 2 args took 0.048517942428589 switch with 2 args took 0.066240072250366 unpack with 2 args took 0.050565004348755 cufa with 3 args took 0.053339958190918 switch with 3 args took 0.074687004089355 unpack with 3 args took 0.055233001708984 cufa with 4 args took 0.052191019058228 switch with 4 args took 0.084609031677246 unpack with 4 args took 0.060173034667969 cufa with 5 args took 0.054590225219727 switch with 5 args took 0.092880010604858 unpack with 5 args took 0.065142869949341 cufa with 100 args took 0.31015014648438 switch with 100 args took 0.31643509864807
Process exited with code 137.
Output for 7.2.27
cufa with 0 args took 0.043812036514282 switch with 0 args took 0.050873994827271 unpack with 0 args took 0.039570093154907 cufa with 1 args took 0.0488600730896 switch with 1 args took 0.065583944320679 unpack with 1 args took 0.047904968261719 cufa with 2 args took 0.051249027252197 switch with 2 args took 0.072107076644897 unpack with 2 args took 0.051367998123169 cufa with 3 args took 0.053706884384155 switch with 3 args took 0.081830978393555 unpack with 3 args took 0.054577112197876 cufa with 4 args took 0.056545972824097 switch with 4 args took 0.089086055755615 unpack with 4 args took 0.056232929229736 cufa with 5 args took 0.058187007904053 switch with 5 args took 0.098670959472656 unpack with 5 args took 0.059561967849731 cufa with 100 args took 0.30649709701538 switch with 100 args took 0.32434415817261
Process exited with code 137.
Output for 7.2.26
cufa with 0 args took 0.044414043426514 switch with 0 args took 0.049707889556885 unpack with 0 args took 0.041460990905762 cufa with 1 args took 0.050575017929077 switch with 1 args took 0.067550897598267 unpack with 1 args took 0.049717903137207 cufa with 2 args took 0.051079034805298 switch with 2 args took 0.072566032409668 unpack with 2 args took 0.051483869552612 cufa with 3 args took 0.056109189987183 switch with 3 args took 0.082275152206421 unpack with 3 args took 0.056819915771484 cufa with 4 args took 0.057233095169067 switch with 4 args took 0.095006942749023 unpack with 4 args took 0.056126832962036 cufa with 5 args took 0.060880184173584 switch with 5 args took 0.10044002532959 unpack with 5 args took 0.059123992919922 cufa with 100 args took 0.30613493919373 switch with 100 args took 0.32484412193298
Process exited with code 137.
Output for 7.2.25
cufa with 0 args took 0.045079946517944 switch with 0 args took 0.053040981292725 unpack with 0 args took 0.043617963790894 cufa with 1 args took 0.051716804504395 switch with 1 args took 0.068376064300537 unpack with 1 args took 0.051002979278564 cufa with 2 args took 0.053602933883667 switch with 2 args took 0.073454141616821 unpack with 2 args took 0.053634881973267 cufa with 3 args took 0.055857181549072 switch with 3 args took 0.081459999084473 unpack with 3 args took 0.055099010467529 cufa with 4 args took 0.057960987091064 switch with 4 args took 0.090999841690063 unpack with 4 args took 0.056252956390381 cufa with 5 args took 0.059159994125366 switch with 5 args took 0.098420143127441 unpack with 5 args took 0.060813903808594 cufa with 100 args took 0.30310392379761 switch with 100 args took 0.32722687721252
Process exited with code 137.
Output for 7.2.24
cufa with 0 args took 0.042452096939087 switch with 0 args took 0.04951286315918 unpack with 0 args took 0.037190914154053 cufa with 1 args took 0.045533895492554 switch with 1 args took 0.059911012649536 unpack with 1 args took 0.047567129135132 cufa with 2 args took 0.048300981521606 switch with 2 args took 0.068243980407715 unpack with 2 args took 0.047946929931641 cufa with 3 args took 0.049812078475952 switch with 3 args took 0.073505878448486 unpack with 3 args took 0.049751996994019 cufa with 4 args took 0.052023887634277 switch with 4 args took 0.082990884780884 unpack with 4 args took 0.05287504196167 cufa with 5 args took 0.053537130355835 switch with 5 args took 0.091223001480103 unpack with 5 args took 0.058554887771606 cufa with 100 args took 0.30537509918213 switch with 100 args took 0.31249403953552
Process exited with code 137.
Output for 7.2.23
cufa with 0 args took 0.042434215545654 switch with 0 args took 0.053329944610596 unpack with 0 args took 0.041924953460693 cufa with 1 args took 0.049381017684937 switch with 1 args took 0.065441131591797 unpack with 1 args took 0.049898147583008 cufa with 2 args took 0.051090955734253 switch with 2 args took 0.074783086776733 unpack with 2 args took 0.052242040634155 cufa with 3 args took 0.05402398109436 switch with 3 args took 0.082018852233887 unpack with 3 args took 0.054769039154053 cufa with 4 args took 0.054709196090698 switch with 4 args took 0.09061598777771 unpack with 4 args took 0.055030822753906 cufa with 5 args took 0.057803869247437 switch with 5 args took 0.09975004196167 unpack with 5 args took 0.058439970016479 cufa with 100 args took 0.30132699012756 switch with 100 args took 0.33281493186951
Process exited with code 137.
Output for 7.2.22
cufa with 0 args took 0.04036283493042 switch with 0 args took 0.050015926361084 unpack with 0 args took 0.039161205291748 cufa with 1 args took 0.046988964080811 switch with 1 args took 0.060337066650391 unpack with 1 args took 0.047347068786621 cufa with 2 args took 0.049848079681396 switch with 2 args took 0.067078828811646 unpack with 2 args took 0.050161838531494 cufa with 3 args took 0.052518129348755 switch with 3 args took 0.078390121459961 unpack with 3 args took 0.054511070251465 cufa with 4 args took 0.053254127502441 switch with 4 args took 0.084274053573608 unpack with 4 args took 0.055348873138428 cufa with 5 args took 0.056435108184814 switch with 5 args took 0.09414005279541 unpack with 5 args took 0.057471036911011 cufa with 100 args took 0.30193901062012 switch with 100 args took 0.32315611839294
Process exited with code 137.
Output for 7.2.21
cufa with 0 args took 0.045271158218384 switch with 0 args took 0.053543090820312 unpack with 0 args took 0.042778968811035 cufa with 1 args took 0.051419973373413 switch with 1 args took 0.062081098556519 unpack with 1 args took 0.048969984054565 cufa with 2 args took 0.055415868759155 switch with 2 args took 0.07047700881958 unpack with 2 args took 0.049160957336426 cufa with 3 args took 0.058539867401123 switch with 3 args took 0.076056003570557 unpack with 3 args took 0.054327964782715 cufa with 4 args took 0.06041407585144 switch with 4 args took 0.088418006896973 unpack with 4 args took 0.053544044494629 cufa with 5 args took 0.062580108642578 switch with 5 args took 0.093574047088623 unpack with 5 args took 0.057919979095459 cufa with 100 args took 0.30146598815918 switch with 100 args took 0.32018494606018
Process exited with code 137.
Output for 7.2.20
cufa with 0 args took 0.042123079299927 switch with 0 args took 0.048198938369751 unpack with 0 args took 0.04318380355835 cufa with 1 args took 0.048825979232788 switch with 1 args took 0.061623096466064 unpack with 1 args took 0.051568031311035 cufa with 2 args took 0.051197052001953 switch with 2 args took 0.072333097457886 unpack with 2 args took 0.052448034286499 cufa with 3 args took 0.053568124771118 switch with 3 args took 0.079200029373169 unpack with 3 args took 0.054201126098633 cufa with 4 args took 0.056194067001343 switch with 4 args took 0.092623949050903 unpack with 4 args took 0.057451009750366 cufa with 5 args took 0.056977987289429 switch with 5 args took 0.096333980560303 unpack with 5 args took 0.059424877166748 cufa with 100 args took 0.30341792106628 switch with 100 args took 0.31942582130432
Process exited with code 137.
Output for 7.2.19
cufa with 0 args took 0.040246963500977 switch with 0 args took 0.052879810333252 unpack with 0 args took 0.047163963317871 cufa with 1 args took 0.048428058624268 switch with 1 args took 0.067066192626953 unpack with 1 args took 0.052750825881958 cufa with 2 args took 0.051108837127686 switch with 2 args took 0.075591802597046 unpack with 2 args took 0.054845094680786 cufa with 3 args took 0.053648948669434 switch with 3 args took 0.084333896636963 unpack with 3 args took 0.060311079025269 cufa with 4 args took 0.054926872253418 switch with 4 args took 0.092993974685669 unpack with 4 args took 0.058446884155273 cufa with 5 args took 0.057049989700317 switch with 5 args took 0.10480499267578 unpack with 5 args took 0.061900854110718 cufa with 100 args took 0.30402898788452 switch with 100 args took 0.3245050907135
Process exited with code 137.
Output for 7.2.18
cufa with 0 args took 0.040658950805664 switch with 0 args took 0.051024198532104 unpack with 0 args took 0.045625925064087 cufa with 1 args took 0.050125122070312 switch with 1 args took 0.06663703918457 unpack with 1 args took 0.056083917617798 cufa with 2 args took 0.050143003463745 switch with 2 args took 0.073146820068359 unpack with 2 args took 0.05831503868103 cufa with 3 args took 0.05410099029541 switch with 3 args took 0.087646961212158 unpack with 3 args took 0.059693098068237 cufa with 4 args took 0.05459189414978 switch with 4 args took 0.093253135681152 unpack with 4 args took 0.062903165817261 cufa with 5 args took 0.057667016983032 switch with 5 args took 0.099652051925659 unpack with 5 args took 0.064427852630615 cufa with 100 args took 0.30059599876404 switch with 100 args took 0.32195901870728
Process exited with code 137.
Output for 7.2.17
cufa with 0 args took 0.039983034133911 switch with 0 args took 0.049026012420654 unpack with 0 args took 0.042578935623169 cufa with 1 args took 0.046664953231812 switch with 1 args took 0.065354824066162 unpack with 1 args took 0.053139925003052 cufa with 2 args took 0.052779912948608 switch with 2 args took 0.070528984069824 unpack with 2 args took 0.060377836227417 cufa with 3 args took 0.052635908126831 switch with 3 args took 0.079041004180908 unpack with 3 args took 0.059259176254272 cufa with 4 args took 0.05397891998291 switch with 4 args took 0.086639881134033 unpack with 4 args took 0.060415983200073 cufa with 5 args took 0.057512998580933 switch with 5 args took 0.096213817596436 unpack with 5 args took 0.063172101974487 cufa with 100 args took 0.29949998855591 switch with 100 args took 0.32402300834656
Process exited with code 137.
Output for 7.2.16
cufa with 0 args took 0.042636871337891 switch with 0 args took 0.050148963928223 unpack with 0 args took 0.041837930679321 cufa with 1 args took 0.049040079116821 switch with 1 args took 0.059792041778564 unpack with 1 args took 0.052074909210205 cufa with 2 args took 0.052145004272461 switch with 2 args took 0.069468975067139 unpack with 2 args took 0.055788040161133 cufa with 3 args took 0.053967952728271 switch with 3 args took 0.078037977218628 unpack with 3 args took 0.059284210205078 cufa with 4 args took 0.055701017379761 switch with 4 args took 0.086339950561523 unpack with 4 args took 0.057357788085938 cufa with 5 args took 0.058968067169189 switch with 5 args took 0.095496892929077 unpack with 5 args took 0.061927080154419 cufa with 100 args took 0.30039310455322 switch with 100 args took 0.32279586791992
Process exited with code 137.
Output for 7.2.15
cufa with 0 args took 0.041148900985718 switch with 0 args took 0.049345016479492 unpack with 0 args took 0.04340386390686 cufa with 1 args took 0.05011510848999 switch with 1 args took 0.061046123504639 unpack with 1 args took 0.055677890777588 cufa with 2 args took 0.051831960678101 switch with 2 args took 0.06718111038208 unpack with 2 args took 0.055792808532715 cufa with 3 args took 0.053826093673706 switch with 3 args took 0.075921058654785 unpack with 3 args took 0.056970119476318 cufa with 4 args took 0.057662963867188 switch with 4 args took 0.085376024246216 unpack with 4 args took 0.062790155410767 cufa with 5 args took 0.059195041656494 switch with 5 args took 0.092832088470459 unpack with 5 args took 0.067407846450806 cufa with 100 args took 0.30295991897583 switch with 100 args took 0.32224202156067
Process exited with code 137.
Output for 7.2.14
cufa with 0 args took 0.041908979415894 switch with 0 args took 0.050539016723633 unpack with 0 args took 0.040966987609863 cufa with 1 args took 0.050774097442627 switch with 1 args took 0.060623168945312 unpack with 1 args took 0.053156137466431 cufa with 2 args took 0.051437139511108 switch with 2 args took 0.070726156234741 unpack with 2 args took 0.057132005691528 cufa with 3 args took 0.053903102874756 switch with 3 args took 0.078946113586426 unpack with 3 args took 0.056159019470215 cufa with 4 args took 0.056370973587036 switch with 4 args took 0.085374116897583 unpack with 4 args took 0.062005996704102 cufa with 5 args took 0.058269023895264 switch with 5 args took 0.093710899353027 unpack with 5 args took 0.063632011413574 cufa with 100 args took 0.30062794685364 switch with 100 args took 0.3250720500946
Process exited with code 137.
Output for 7.2.13
cufa with 0 args took 0.038640022277832 switch with 0 args took 0.048506021499634 unpack with 0 args took 0.039108037948608 cufa with 1 args took 0.045991897583008 switch with 1 args took 0.06400203704834 unpack with 1 args took 0.057944059371948 cufa with 2 args took 0.047485113143921 switch with 2 args took 0.069700956344604 unpack with 2 args took 0.053902149200439 cufa with 3 args took 0.049498796463013 switch with 3 args took 0.078182935714722 unpack with 3 args took 0.059187889099121 cufa with 4 args took 0.052661895751953 switch with 4 args took 0.085937023162842 unpack with 4 args took 0.05626106262207 cufa with 5 args took 0.053324222564697 switch with 5 args took 0.093592166900635 unpack with 5 args took 0.059869050979614 cufa with 100 args took 0.30086898803711 switch with 100 args took 0.31331896781921
Process exited with code 137.
Output for 7.2.12
cufa with 0 args took 0.040685892105103 switch with 0 args took 0.050817012786865 unpack with 0 args took 0.04273796081543 cufa with 1 args took 0.054537057876587 switch with 1 args took 0.064554929733276 unpack with 1 args took 0.0538489818573 cufa with 2 args took 0.057363986968994 switch with 2 args took 0.073198795318604 unpack with 2 args took 0.054708003997803 cufa with 3 args took 0.057124137878418 switch with 3 args took 0.081378936767578 unpack with 3 args took 0.057706832885742 cufa with 4 args took 0.059011936187744 switch with 4 args took 0.085610866546631 unpack with 4 args took 0.058254957199097 cufa with 5 args took 0.06291389465332 switch with 5 args took 0.097954988479614 unpack with 5 args took 0.062841892242432 cufa with 100 args took 0.30210185050964 switch with 100 args took 0.32468199729919
Process exited with code 137.
Output for 7.2.11
cufa with 0 args took 0.045840978622437 switch with 0 args took 0.049566984176636 unpack with 0 args took 0.039448022842407 cufa with 1 args took 0.05185604095459 switch with 1 args took 0.06099009513855 unpack with 1 args took 0.046633005142212 cufa with 2 args took 0.051937818527222 switch with 2 args took 0.070127964019775 unpack with 2 args took 0.049376010894775 cufa with 3 args took 0.056864976882935 switch with 3 args took 0.078113079071045 unpack with 3 args took 0.050957918167114 cufa with 4 args took 0.059055089950562 switch with 4 args took 0.086440086364746 unpack with 4 args took 0.054442882537842 cufa with 5 args took 0.060640811920166 switch with 5 args took 0.092588186264038 unpack with 5 args took 0.060213804244995 cufa with 100 args took 0.30666708946228 switch with 100 args took 0.32650804519653
Process exited with code 137.
Output for 7.2.10
cufa with 0 args took 0.0396728515625 switch with 0 args took 0.049685001373291 unpack with 0 args took 0.035113096237183 cufa with 1 args took 0.048794984817505 switch with 1 args took 0.059247970581055 unpack with 1 args took 0.043905973434448 cufa with 2 args took 0.048053979873657 switch with 2 args took 0.066958904266357 unpack with 2 args took 0.046599864959717 cufa with 3 args took 0.052803039550781 switch with 3 args took 0.077929973602295 unpack with 3 args took 0.052098989486694 cufa with 4 args took 0.052808046340942 switch with 4 args took 0.089434146881104 unpack with 4 args took 0.052882194519043 cufa with 5 args took 0.05505895614624 switch with 5 args took 0.092113018035889 unpack with 5 args took 0.059582948684692 cufa with 100 args took 0.30155491828918 switch with 100 args took 0.31856608390808
Process exited with code 137.
Output for 7.2.9
cufa with 0 args took 0.042420148849487 switch with 0 args took 0.051184892654419 unpack with 0 args took 0.043374061584473 cufa with 1 args took 0.04957103729248 switch with 1 args took 0.064887046813965 unpack with 1 args took 0.049453020095825 cufa with 2 args took 0.050144910812378 switch with 2 args took 0.069133043289185 unpack with 2 args took 0.054112911224365 cufa with 3 args took 0.052326917648315 switch with 3 args took 0.07736611366272 unpack with 3 args took 0.055154085159302 cufa with 4 args took 0.055705785751343 switch with 4 args took 0.086591005325317 unpack with 4 args took 0.056630849838257 cufa with 5 args took 0.055536985397339 switch with 5 args took 0.093713998794556 unpack with 5 args took 0.059782981872559 cufa with 100 args took 0.30111694335938 switch with 100 args took 0.31660485267639
Process exited with code 137.
Output for 7.2.8
cufa with 0 args took 0.042426109313965 switch with 0 args took 0.05082893371582 unpack with 0 args took 0.042117118835449 cufa with 1 args took 0.050381898880005 switch with 1 args took 0.063328981399536 unpack with 1 args took 0.052223920822144 cufa with 2 args took 0.051562070846558 switch with 2 args took 0.070558071136475 unpack with 2 args took 0.056813955307007 cufa with 3 args took 0.053715944290161 switch with 3 args took 0.078392028808594 unpack with 3 args took 0.056563138961792 cufa with 4 args took 0.057284832000732 switch with 4 args took 0.085940837860107 unpack with 4 args took 0.05925989151001 cufa with 5 args took 0.057515144348145 switch with 5 args took 0.092916965484619 unpack with 5 args took 0.063215970993042 cufa with 100 args took 0.30108404159546 switch with 100 args took 0.32406306266785
Process exited with code 137.
Output for 7.2.7
cufa with 0 args took 0.041385173797607 switch with 0 args took 0.049401998519897 unpack with 0 args took 0.042761087417603 cufa with 1 args took 0.047247886657715 switch with 1 args took 0.062700986862183 unpack with 1 args took 0.050819873809814 cufa with 2 args took 0.051390171051025 switch with 2 args took 0.073462963104248 unpack with 2 args took 0.054763078689575 cufa with 3 args took 0.052073955535889 switch with 3 args took 0.078999042510986 unpack with 3 args took 0.055448055267334 cufa with 4 args took 0.057491064071655 switch with 4 args took 0.084558010101318 unpack with 4 args took 0.060389995574951 cufa with 5 args took 0.055688858032227 switch with 5 args took 0.095078945159912 unpack with 5 args took 0.061022043228149 cufa with 100 args took 0.30013203620911 switch with 100 args took 0.31632089614868
Process exited with code 137.
Output for 7.2.6
cufa with 0 args took 0.043470859527588 switch with 0 args took 0.053529977798462 unpack with 0 args took 0.044523954391479 cufa with 1 args took 0.05384087562561 switch with 1 args took 0.068212985992432 unpack with 1 args took 0.058877944946289 cufa with 2 args took 0.054842948913574 switch with 2 args took 0.082961797714233 unpack with 2 args took 0.057390928268433 cufa with 3 args took 0.057157039642334 switch with 3 args took 0.088529109954834 unpack with 3 args took 0.059163093566895 cufa with 4 args took 0.059532880783081 switch with 4 args took 0.093024015426636 unpack with 4 args took 0.059068918228149 cufa with 5 args took 0.058454990386963 switch with 5 args took 0.094671964645386 unpack with 5 args took 0.060423135757446 cufa with 100 args took 0.30090284347534 switch with 100 args took 0.32204389572144
Process exited with code 137.
Output for 7.2.5
cufa with 0 args took 0.040624856948853 switch with 0 args took 0.04817008972168 unpack with 0 args took 0.039342880249023 cufa with 1 args took 0.047914981842041 switch with 1 args took 0.060745000839233 unpack with 1 args took 0.053492069244385 cufa with 2 args took 0.049968957901001 switch with 2 args took 0.069859981536865 unpack with 2 args took 0.053865194320679 cufa with 3 args took 0.051833868026733 switch with 3 args took 0.079301118850708 unpack with 3 args took 0.056757211685181 cufa with 4 args took 0.052446126937866 switch with 4 args took 0.087779998779297 unpack with 4 args took 0.057115793228149 cufa with 5 args took 0.056555986404419 switch with 5 args took 0.096613883972168 unpack with 5 args took 0.061426877975464 cufa with 100 args took 0.30152082443237 switch with 100 args took 0.31536102294922
Process exited with code 137.
Output for 7.2.4
cufa with 0 args took 0.040802001953125 switch with 0 args took 0.047857999801636 unpack with 0 args took 0.042634963989258 cufa with 1 args took 0.050240993499756 switch with 1 args took 0.06359601020813 unpack with 1 args took 0.05686092376709 cufa with 2 args took 0.051993846893311 switch with 2 args took 0.072988033294678 unpack with 2 args took 0.056875944137573 cufa with 3 args took 0.054245948791504 switch with 3 args took 0.080715894699097 unpack with 3 args took 0.060330867767334 cufa with 4 args took 0.057882070541382 switch with 4 args took 0.092191934585571 unpack with 4 args took 0.060566186904907 cufa with 5 args took 0.05933403968811 switch with 5 args took 0.095127105712891 unpack with 5 args took 0.063066959381104 cufa with 100 args took 0.30531787872314 switch with 100 args took 0.32216811180115
Process exited with code 137.
Output for 7.2.3
cufa with 0 args took 0.044186115264893 switch with 0 args took 0.048481941223145 unpack with 0 args took 0.040565013885498 cufa with 1 args took 0.053433895111084 switch with 1 args took 0.06189489364624 unpack with 1 args took 0.050846815109253 cufa with 2 args took 0.053264856338501 switch with 2 args took 0.071652889251709 unpack with 2 args took 0.052178144454956 cufa with 3 args took 0.056689023971558 switch with 3 args took 0.080948829650879 unpack with 3 args took 0.054812908172607 cufa with 4 args took 0.057745933532715 switch with 4 args took 0.093224048614502 unpack with 4 args took 0.058467864990234 cufa with 5 args took 0.059981107711792 switch with 5 args took 0.09463906288147 unpack with 5 args took 0.061856985092163 cufa with 100 args took 0.30477404594421 switch with 100 args took 0.32100796699524
Process exited with code 137.
Output for 7.2.2
cufa with 0 args took 0.039566993713379 switch with 0 args took 0.048525094985962 unpack with 0 args took 0.037186145782471 cufa with 1 args took 0.045687913894653 switch with 1 args took 0.063516139984131 unpack with 1 args took 0.048511981964111 cufa with 2 args took 0.047781944274902 switch with 2 args took 0.070672988891602 unpack with 2 args took 0.04925012588501 cufa with 3 args took 0.054938077926636 switch with 3 args took 0.079581022262573 unpack with 3 args took 0.050838947296143 cufa with 4 args took 0.053838968276978 switch with 4 args took 0.088537931442261 unpack with 4 args took 0.054201126098633 cufa with 5 args took 0.054710865020752 switch with 5 args took 0.10293102264404 unpack with 5 args took 0.061979055404663 cufa with 100 args took 0.31828308105469 switch with 100 args took 0.36282992362976
Process exited with code 137.
Output for 7.2.1
cufa with 0 args took 0.041395902633667 switch with 0 args took 0.050181150436401 unpack with 0 args took 0.036955118179321 cufa with 1 args took 0.050071954727173 switch with 1 args took 0.064332008361816 unpack with 1 args took 0.044719934463501 cufa with 2 args took 0.048791170120239 switch with 2 args took 0.069628953933716 unpack with 2 args took 0.04799485206604 cufa with 3 args took 0.055285930633545 switch with 3 args took 0.079329967498779 unpack with 3 args took 0.050148963928223 cufa with 4 args took 0.055883884429932 switch with 4 args took 0.086771011352539 unpack with 4 args took 0.05275297164917 cufa with 5 args took 0.05799412727356 switch with 5 args took 0.10079598426819 unpack with 5 args took 0.057579040527344 cufa with 100 args took 0.2996289730072 switch with 100 args took 0.31815791130066
Process exited with code 137.
Output for 7.2.0
cufa with 0 args took 0.044840097427368 switch with 0 args took 0.050251960754395 unpack with 0 args took 0.040783166885376 cufa with 1 args took 0.05077600479126 switch with 1 args took 0.066311836242676 unpack with 1 args took 0.051436901092529 cufa with 2 args took 0.055676937103271 switch with 2 args took 0.073144912719727 unpack with 2 args took 0.050957918167114 cufa with 3 args took 0.057224988937378 switch with 3 args took 0.078468799591064 unpack with 3 args took 0.052288055419922 cufa with 4 args took 0.062283039093018 switch with 4 args took 0.087215185165405 unpack with 4 args took 0.055567026138306 cufa with 5 args took 0.062675952911377 switch with 5 args took 0.097166061401367 unpack with 5 args took 0.057896852493286 cufa with 100 args took 0.30352401733398 switch with 100 args took 0.32646894454956
Process exited with code 137.
Output for 7.1.33
cufa with 0 args took 0.045755863189697 switch with 0 args took 0.066298961639404 unpack with 0 args took 0.040945053100586 cufa with 1 args took 0.053513050079346 switch with 1 args took 0.083981990814209 unpack with 1 args took 0.049722909927368 cufa with 2 args took 0.055875062942505 switch with 2 args took 0.09752893447876 unpack with 2 args took 0.054606914520264 cufa with 3 args took 0.059440851211548 switch with 3 args took 0.10904502868652 unpack with 3 args took 0.057565927505493 cufa with 4 args took 0.061230897903442 switch with 4 args took 0.12190198898315 unpack with 4 args took 0.057237863540649 cufa with 5 args took 0.062701940536499 switch with 5 args took 0.15972495079041 unpack with 5 args took 0.060429096221924 cufa with 100 args took 0.32500505447388
Process exited with code 137.
Output for 7.1.32
cufa with 0 args took 0.046755075454712 switch with 0 args took 0.066748142242432 unpack with 0 args took 0.040828943252563 cufa with 1 args took 0.051915884017944 switch with 1 args took 0.087299823760986 unpack with 1 args took 0.049705028533936 cufa with 2 args took 0.057430028915405 switch with 2 args took 0.098627090454102 unpack with 2 args took 0.052906036376953 cufa with 3 args took 0.057559013366699 switch with 3 args took 0.11102700233459 unpack with 3 args took 0.05519700050354 cufa with 4 args took 0.060142993927002 switch with 4 args took 0.12462782859802 unpack with 4 args took 0.058720827102661 cufa with 5 args took 0.063916921615601 switch with 5 args took 0.16078495979309 unpack with 5 args took 0.05956506729126 cufa with 100 args took 0.32625985145569
Process exited with code 137.
Output for 7.1.31
cufa with 0 args took 0.048537969589233 switch with 0 args took 0.073431968688965 unpack with 0 args took 0.040724992752075 cufa with 1 args took 0.053990125656128 switch with 1 args took 0.084792852401733 unpack with 1 args took 0.050356149673462 cufa with 2 args took 0.062611818313599 switch with 2 args took 0.097054958343506 unpack with 2 args took 0.053299188613892 cufa with 3 args took 0.059420824050903 switch with 3 args took 0.11033606529236 unpack with 3 args took 0.056988954544067 cufa with 4 args took 0.06159496307373 switch with 4 args took 0.12857818603516 unpack with 4 args took 0.058445930480957 cufa with 5 args took 0.064360857009888 switch with 5 args took 0.16076517105103 unpack with 5 args took 0.063694000244141 cufa with 100 args took 0.3326940536499
Process exited with code 137.
Output for 7.1.30
cufa with 0 args took 0.047590017318726 switch with 0 args took 0.064023971557617 unpack with 0 args took 0.039263010025024 cufa with 1 args took 0.054080009460449 switch with 1 args took 0.084786176681519 unpack with 1 args took 0.04744815826416 cufa with 2 args took 0.056672096252441 switch with 2 args took 0.095196962356567 unpack with 2 args took 0.051959991455078 cufa with 3 args took 0.060425043106079 switch with 3 args took 0.11149406433105 unpack with 3 args took 0.054033994674683 cufa with 4 args took 0.062515020370483 switch with 4 args took 0.1256639957428 unpack with 4 args took 0.056351900100708 cufa with 5 args took 0.064573049545288 switch with 5 args took 0.16010308265686 unpack with 5 args took 0.059668064117432 cufa with 100 args took 0.32509994506836
Process exited with code 137.
Output for 7.1.29
cufa with 0 args took 0.044348001480103 switch with 0 args took 0.070981025695801 unpack with 0 args took 0.044083833694458 cufa with 1 args took 0.050777912139893 switch with 1 args took 0.085798978805542 unpack with 1 args took 0.051029920578003 cufa with 2 args took 0.053529977798462 switch with 2 args took 0.096466064453125 unpack with 2 args took 0.055344104766846 cufa with 3 args took 0.056734085083008 switch with 3 args took 0.10860705375671 unpack with 3 args took 0.057691097259521 cufa with 4 args took 0.058547973632812 switch with 4 args took 0.12081909179688 unpack with 4 args took 0.059168815612793 cufa with 5 args took 0.061182975769043 switch with 5 args took 0.15850591659546 unpack with 5 args took 0.06079888343811 cufa with 100 args took 0.32307195663452 switch with 100 args took 0.37369990348816
Process exited with code 137.
Output for 7.1.28
cufa with 0 args took 0.044608116149902 switch with 0 args took 0.069362878799438 unpack with 0 args took 0.044567823410034 cufa with 1 args took 0.050365924835205 switch with 1 args took 0.086966991424561 unpack with 1 args took 0.04999303817749 cufa with 2 args took 0.054037094116211 switch with 2 args took 0.096958160400391 unpack with 2 args took 0.056457042694092 cufa with 3 args took 0.05699896812439 switch with 3 args took 0.10873484611511 unpack with 3 args took 0.055394172668457 cufa with 4 args took 0.061727046966553 switch with 4 args took 0.12245488166809 unpack with 4 args took 0.058150053024292 cufa with 5 args took 0.059637069702148 switch with 5 args took 0.16098618507385 unpack with 5 args took 0.06178092956543 cufa with 100 args took 0.32625079154968
Process exited with code 137.
Output for 7.1.27
cufa with 0 args took 0.04483699798584 switch with 0 args took 0.068344831466675 unpack with 0 args took 0.042107820510864 cufa with 1 args took 0.051240205764771 switch with 1 args took 0.089254856109619 unpack with 1 args took 0.050271034240723 cufa with 2 args took 0.057352066040039 switch with 2 args took 0.10054206848145 unpack with 2 args took 0.056571960449219 cufa with 3 args took 0.05915093421936 switch with 3 args took 0.11184191703796 unpack with 3 args took 0.058457136154175 cufa with 4 args took 0.064139127731323 switch with 4 args took 0.12480306625366 unpack with 4 args took 0.059177160263062 cufa with 5 args took 0.065937995910645 switch with 5 args took 0.16249203681946 unpack with 5 args took 0.063142776489258 cufa with 100 args took 0.32753300666809
Process exited with code 137.
Output for 7.1.26
cufa with 0 args took 0.048043012619019 switch with 0 args took 0.06818699836731 unpack with 0 args took 0.04298996925354 cufa with 1 args took 0.056696891784668 switch with 1 args took 0.08811616897583 unpack with 1 args took 0.053267002105713 cufa with 2 args took 0.05898904800415 switch with 2 args took 0.10152387619019 unpack with 2 args took 0.055804967880249 cufa with 3 args took 0.06191611289978 switch with 3 args took 0.1110692024231 unpack with 3 args took 0.057081937789917 cufa with 4 args took 0.065008878707886 switch with 4 args took 0.12237405776978 unpack with 4 args took 0.060342073440552 cufa with 5 args took 0.064558982849121 switch with 5 args took 0.1564769744873 unpack with 5 args took 0.059608936309814 cufa with 100 args took 0.3272180557251
Process exited with code 137.
Output for 7.1.25
cufa with 0 args took 0.044378995895386 switch with 0 args took 0.066449165344238 unpack with 0 args took 0.045220136642456 cufa with 1 args took 0.050779104232788 switch with 1 args took 0.084104061126709 unpack with 1 args took 0.051201105117798 cufa with 2 args took 0.052870035171509 switch with 2 args took 0.096714019775391 unpack with 2 args took 0.054448843002319 cufa with 3 args took 0.054626941680908 switch with 3 args took 0.10840916633606 unpack with 3 args took 0.057624816894531 cufa with 4 args took 0.058044910430908 switch with 4 args took 0.12158799171448 unpack with 4 args took 0.060388803482056 cufa with 5 args took 0.059159994125366 switch with 5 args took 0.15776991844177 unpack with 5 args took 0.063287019729614 cufa with 100 args took 0.32334399223328 switch with 100 args took 0.37372708320618
Process exited with code 137.
Output for 7.1.24
cufa with 0 args took 0.046324014663696 switch with 0 args took 0.06833291053772 unpack with 0 args took 0.041813135147095 cufa with 1 args took 0.051987886428833 switch with 1 args took 0.088329792022705 unpack with 1 args took 0.052173852920532 cufa with 2 args took 0.056026935577393 switch with 2 args took 0.099645853042603 unpack with 2 args took 0.056924104690552 cufa with 3 args took 0.05823016166687 switch with 3 args took 0.11190295219421 unpack with 3 args took 0.058178901672363 cufa with 4 args took 0.058209896087646 switch with 4 args took 0.12514090538025 unpack with 4 args took 0.061995983123779 cufa with 5 args took 0.061702013015747 switch with 5 args took 0.15936899185181 unpack with 5 args took 0.062263011932373 cufa with 100 args took 0.32494497299194
Process exited with code 137.
Output for 7.1.23
cufa with 0 args took 0.04711389541626 switch with 0 args took 0.066538095474243 unpack with 0 args took 0.043606996536255 cufa with 1 args took 0.053536176681519 switch with 1 args took 0.088341951370239 unpack with 1 args took 0.051841974258423 cufa with 2 args took 0.05854606628418 switch with 2 args took 0.10004615783691 unpack with 2 args took 0.0538330078125 cufa with 3 args took 0.060295104980469 switch with 3 args took 0.10742282867432 unpack with 3 args took 0.056326150894165 cufa with 4 args took 0.060034990310669 switch with 4 args took 0.12187218666077 unpack with 4 args took 0.058837175369263 cufa with 5 args took 0.062587976455688 switch with 5 args took 0.16029191017151 unpack with 5 args took 0.061819076538086 cufa with 100 args took 0.35423898696899
Process exited with code 137.
Output for 7.1.22
cufa with 0 args took 0.047152042388916 switch with 0 args took 0.074244976043701 unpack with 0 args took 0.048650026321411 cufa with 1 args took 0.054103136062622 switch with 1 args took 0.094295024871826 unpack with 1 args took 0.056083917617798 cufa with 2 args took 0.054410934448242 switch with 2 args took 0.10124087333679 unpack with 2 args took 0.061434984207153 cufa with 3 args took 0.063560962677002 switch with 3 args took 0.11910200119019 unpack with 3 args took 0.06397008895874 cufa with 4 args took 0.058005809783936 switch with 4 args took 0.12271809577942 unpack with 4 args took 0.063883066177368 cufa with 5 args took 0.063297033309937 switch with 5 args took 0.17296981811523 unpack with 5 args took 0.065533876419067 cufa with 100 args took 0.37276601791382
Process exited with code 137.
Output for 7.1.21
cufa with 0 args took 0.043135166168213 switch with 0 args took 0.065670967102051 unpack with 0 args took 0.041079998016357 cufa with 1 args took 0.048728942871094 switch with 1 args took 0.085554122924805 unpack with 1 args took 0.051109075546265 cufa with 2 args took 0.051881790161133 switch with 2 args took 0.097678899765015 unpack with 2 args took 0.052493095397949 cufa with 3 args took 0.055361986160278 switch with 3 args took 0.11045002937317 unpack with 3 args took 0.054646968841553 cufa with 4 args took 0.056962966918945 switch with 4 args took 0.12282395362854 unpack with 4 args took 0.056391954421997 cufa with 5 args took 0.059696912765503 switch with 5 args took 0.15640807151794 unpack with 5 args took 0.060336112976074 cufa with 100 args took 0.32359719276428 switch with 100 args took 0.37578201293945
Process exited with code 137.
Output for 7.1.20
cufa with 0 args took 0.040796041488647 switch with 0 args took 0.065525054931641 unpack with 0 args took 0.042555093765259 cufa with 1 args took 0.048388004302979 switch with 1 args took 0.082380056381226 unpack with 1 args took 0.049538135528564 cufa with 2 args took 0.052706003189087 switch with 2 args took 0.094987154006958 unpack with 2 args took 0.051458120346069 cufa with 3 args took 0.056550025939941 switch with 3 args took 0.10747003555298 unpack with 3 args took 0.056469917297363 cufa with 4 args took 0.059831142425537 switch with 4 args took 0.12479305267334 unpack with 4 args took 0.05925989151001 cufa with 5 args took 0.069725036621094 switch with 5 args took 0.17424607276917 unpack with 5 args took 0.067636013031006 cufa with 100 args took 0.36347699165344
Process exited with code 137.
Output for 7.1.19
cufa with 0 args took 0.042272806167603 switch with 0 args took 0.064288854598999 unpack with 0 args took 0.043727874755859 cufa with 1 args took 0.047949075698853 switch with 1 args took 0.083321094512939 unpack with 1 args took 0.049321889877319 cufa with 2 args took 0.052545070648193 switch with 2 args took 0.098291158676147 unpack with 2 args took 0.052414178848267 cufa with 3 args took 0.052455186843872 switch with 3 args took 0.10771107673645 unpack with 3 args took 0.054193019866943 cufa with 4 args took 0.056624889373779 switch with 4 args took 0.12102699279785 unpack with 4 args took 0.058856964111328 cufa with 5 args took 0.05849289894104 switch with 5 args took 0.1545729637146 unpack with 5 args took 0.060594797134399 cufa with 100 args took 0.32616305351257 switch with 100 args took 0.3877170085907
Process exited with code 137.
Output for 7.1.18
cufa with 0 args took 0.043278932571411 switch with 0 args took 0.065441131591797 unpack with 0 args took 0.040348052978516 cufa with 1 args took 0.051290035247803 switch with 1 args took 0.084957122802734 unpack with 1 args took 0.048657894134521 cufa with 2 args took 0.051923036575317 switch with 2 args took 0.095567941665649 unpack with 2 args took 0.054065942764282 cufa with 3 args took 0.059705972671509 switch with 3 args took 0.10747885704041 unpack with 3 args took 0.055955171585083 cufa with 4 args took 0.062392950057983 switch with 4 args took 0.13606286048889 unpack with 4 args took 0.060886859893799 cufa with 5 args took 0.071503162384033 switch with 5 args took 0.17586088180542 unpack with 5 args took 0.06322979927063 cufa with 100 args took 0.35600399971008
Process exited with code 137.
Output for 7.1.17
cufa with 0 args took 0.043097019195557 switch with 0 args took 0.065697908401489 unpack with 0 args took 0.039224147796631 cufa with 1 args took 0.047724962234497 switch with 1 args took 0.085370063781738 unpack with 1 args took 0.047930002212524 cufa with 2 args took 0.050740957260132 switch with 2 args took 0.094328165054321 unpack with 2 args took 0.053569078445435 cufa with 3 args took 0.053460121154785 switch with 3 args took 0.11005902290344 unpack with 3 args took 0.054867029190063 cufa with 4 args took 0.058927059173584 switch with 4 args took 0.11941313743591 unpack with 4 args took 0.057894945144653 cufa with 5 args took 0.058912992477417 switch with 5 args took 0.16140198707581 unpack with 5 args took 0.060393095016479 cufa with 100 args took 0.32675290107727 switch with 100 args took 0.37754416465759
Process exited with code 137.
Output for 7.1.16
cufa with 0 args took 0.043673038482666 switch with 0 args took 0.067740917205811 unpack with 0 args took 0.045380115509033 cufa with 1 args took 0.04966402053833 switch with 1 args took 0.087461948394775 unpack with 1 args took 0.051106929779053 cufa with 2 args took 0.053370952606201 switch with 2 args took 0.097474098205566 unpack with 2 args took 0.056514024734497 cufa with 3 args took 0.057137012481689 switch with 3 args took 0.10978507995605 unpack with 3 args took 0.057654857635498 cufa with 4 args took 0.060660123825073 switch with 4 args took 0.1209819316864 unpack with 4 args took 0.059492826461792 cufa with 5 args took 0.05842399597168 switch with 5 args took 0.15763902664185 unpack with 5 args took 0.064138889312744 cufa with 100 args took 0.32777404785156
Process exited with code 137.
Output for 7.1.15
cufa with 0 args took 0.044768095016479 switch with 0 args took 0.066205978393555 unpack with 0 args took 0.043802976608276 cufa with 1 args took 0.05623197555542 switch with 1 args took 0.087523221969604 unpack with 1 args took 0.05024790763855 cufa with 2 args took 0.055422067642212 switch with 2 args took 0.10037684440613 unpack with 2 args took 0.055346012115479 cufa with 3 args took 0.058650016784668 switch with 3 args took 0.11264896392822 unpack with 3 args took 0.056787014007568 cufa with 4 args took 0.06034517288208 switch with 4 args took 0.12576413154602 unpack with 4 args took 0.059165000915527 cufa with 5 args took 0.064752101898193 switch with 5 args took 0.16211891174316 unpack with 5 args took 0.061877012252808 cufa with 100 args took 0.34519910812378
Process exited with code 137.
Output for 7.1.14
cufa with 0 args took 0.047612905502319 switch with 0 args took 0.064915895462036 unpack with 0 args took 0.040201902389526 cufa with 1 args took 0.056581974029541 switch with 1 args took 0.083324909210205 unpack with 1 args took 0.049134969711304 cufa with 2 args took 0.059725999832153 switch with 2 args took 0.096076965332031 unpack with 2 args took 0.05265998840332 cufa with 3 args took 0.063923120498657 switch with 3 args took 0.1085729598999 unpack with 3 args took 0.055612087249756 cufa with 4 args took 0.065266132354736 switch with 4 args took 0.12146496772766 unpack with 4 args took 0.059378147125244 cufa with 5 args took 0.068863153457642 switch with 5 args took 0.15786504745483 unpack with 5 args took 0.060182094573975 cufa with 100 args took 0.35124588012695
Process exited with code 137.
Output for 7.1.13
cufa with 0 args took 0.04562783241272 switch with 0 args took 0.065072059631348 unpack with 0 args took 0.042469024658203 cufa with 1 args took 0.051151990890503 switch with 1 args took 0.084675788879395 unpack with 1 args took 0.049270153045654 cufa with 2 args took 0.054476976394653 switch with 2 args took 0.09542179107666 unpack with 2 args took 0.051821947097778 cufa with 3 args took 0.058746814727783 switch with 3 args took 0.10825109481812 unpack with 3 args took 0.0539231300354 cufa with 4 args took 0.060615062713623 switch with 4 args took 0.14612102508545 unpack with 4 args took 0.058398962020874 cufa with 5 args took 0.061789989471436 switch with 5 args took 0.1580650806427 unpack with 5 args took 0.061182022094727 cufa with 100 args took 0.32343292236328
Process exited with code 137.
Output for 7.1.12
cufa with 0 args took 0.043558120727539 switch with 0 args took 0.06606388092041 unpack with 0 args took 0.043045997619629 cufa with 1 args took 0.050508975982666 switch with 1 args took 0.087303876876831 unpack with 1 args took 0.049330949783325 cufa with 2 args took 0.053629159927368 switch with 2 args took 0.096286058425903 unpack with 2 args took 0.053621053695679 cufa with 3 args took 0.057446002960205 switch with 3 args took 0.10948586463928 unpack with 3 args took 0.054735898971558 cufa with 4 args took 0.061644077301025 switch with 4 args took 0.11993408203125 unpack with 4 args took 0.058680057525635 cufa with 5 args took 0.060896873474121 switch with 5 args took 0.15711116790771 unpack with 5 args took 0.060454130172729 cufa with 100 args took 0.32251501083374 switch with 100 args took 0.37789392471313
Process exited with code 137.
Output for 7.1.11
cufa with 0 args took 0.041427850723267 switch with 0 args took 0.064891815185547 unpack with 0 args took 0.039913892745972 cufa with 1 args took 0.050060987472534 switch with 1 args took 0.083319902420044 unpack with 1 args took 0.048700094223022 cufa with 2 args took 0.053062915802002 switch with 2 args took 0.095149040222168 unpack with 2 args took 0.051896095275879 cufa with 3 args took 0.055860996246338 switch with 3 args took 0.10694193840027 unpack with 3 args took 0.054467916488647 cufa with 4 args took 0.058348894119263 switch with 4 args took 0.11973810195923 unpack with 4 args took 0.056166172027588 cufa with 5 args took 0.0608229637146 switch with 5 args took 0.15480613708496 unpack with 5 args took 0.05977201461792 cufa with 100 args took 0.34304118156433
Process exited with code 137.
Output for 7.1.10
cufa with 0 args took 0.048485040664673 switch with 0 args took 0.066905975341797 unpack with 0 args took 0.043546199798584 cufa with 1 args took 0.057833909988403 switch with 1 args took 0.084720134735107 unpack with 1 args took 0.051180124282837 cufa with 2 args took 0.061070919036865 switch with 2 args took 0.095641136169434 unpack with 2 args took 0.055019855499268 cufa with 3 args took 0.064910888671875 switch with 3 args took 0.10805201530457 unpack with 3 args took 0.058289051055908 cufa with 4 args took 0.06738805770874 switch with 4 args took 0.12086200714111 unpack with 4 args took 0.065315961837769 cufa with 5 args took 0.069704055786133 switch with 5 args took 0.15553784370422 unpack with 5 args took 0.066040992736816 cufa with 100 args took 0.35224795341492
Process exited with code 137.
Output for 7.1.9
cufa with 0 args took 0.03922700881958 switch with 0 args took 0.064095020294189 unpack with 0 args took 0.042082071304321 cufa with 1 args took 0.045840978622437 switch with 1 args took 0.082648992538452 unpack with 1 args took 0.050719976425171 cufa with 2 args took 0.04932713508606 switch with 2 args took 0.094882011413574 unpack with 2 args took 0.053524971008301 cufa with 3 args took 0.050365924835205 switch with 3 args took 0.10614085197449 unpack with 3 args took 0.058242082595825 cufa with 4 args took 0.05220890045166 switch with 4 args took 0.11781191825867 unpack with 4 args took 0.060743093490601 cufa with 5 args took 0.054924011230469 switch with 5 args took 0.15825510025024 unpack with 5 args took 0.0640869140625 cufa with 100 args took 0.3202121257782 switch with 100 args took 0.38163685798645
Process exited with code 137.
Output for 7.1.8
cufa with 0 args took 0.042206048965454 switch with 0 args took 0.065263986587524 unpack with 0 args took 0.043509960174561 cufa with 1 args took 0.04928183555603 switch with 1 args took 0.084149837493896 unpack with 1 args took 0.051275968551636 cufa with 2 args took 0.052509784698486 switch with 2 args took 0.096442937850952 unpack with 2 args took 0.056257009506226 cufa with 3 args took 0.055666923522949 switch with 3 args took 0.11294007301331 unpack with 3 args took 0.059299945831299 cufa with 4 args took 0.058132886886597 switch with 4 args took 0.12134003639221 unpack with 4 args took 0.064909219741821 cufa with 5 args took 0.059874057769775 switch with 5 args took 0.15517592430115 unpack with 5 args took 0.065125942230225 cufa with 100 args took 0.32538104057312
Process exited with code 137.
Output for 7.1.7
cufa with 0 args took 0.04554295539856 switch with 0 args took 0.06865119934082 unpack with 0 args took 0.046653985977173 cufa with 1 args took 0.05057692527771 switch with 1 args took 0.089501857757568 unpack with 1 args took 0.052330017089844 cufa with 2 args took 0.055404901504517 switch with 2 args took 0.10003113746643 unpack with 2 args took 0.056153059005737 cufa with 3 args took 0.057342052459717 switch with 3 args took 0.11501789093018 unpack with 3 args took 0.058148860931396 cufa with 4 args took 0.060653924942017 switch with 4 args took 0.14843392372131 unpack with 4 args took 0.061515092849731 cufa with 5 args took 0.062608957290649 switch with 5 args took 0.16472196578979 unpack with 5 args took 0.065620899200439 cufa with 100 args took 0.35549306869507
Process exited with code 137.
Output for 7.1.6
cufa with 0 args took 0.041864156723022 switch with 0 args took 0.064647912979126 unpack with 0 args took 0.047543048858643 cufa with 1 args took 0.049395084381104 switch with 1 args took 0.081697940826416 unpack with 1 args took 0.055341005325317 cufa with 2 args took 0.050709962844849 switch with 2 args took 0.09433388710022 unpack with 2 args took 0.056190013885498 cufa with 3 args took 0.053076982498169 switch with 3 args took 0.10531282424927 unpack with 3 args took 0.059737205505371 cufa with 4 args took 0.054440975189209 switch with 4 args took 0.14006900787354 unpack with 4 args took 0.062724113464355 cufa with 5 args took 0.057533979415894 switch with 5 args took 0.15499591827393 unpack with 5 args took 0.065258979797363 cufa with 100 args took 0.32398200035095 switch with 100 args took 0.37331080436707
Process exited with code 137.
Output for 7.1.5
cufa with 0 args took 0.042571067810059 switch with 0 args took 0.068308115005493 unpack with 0 args took 0.046111106872559 cufa with 1 args took 0.049952030181885 switch with 1 args took 0.092845916748047 unpack with 1 args took 0.052205085754395 cufa with 2 args took 0.053668975830078 switch with 2 args took 0.10076212882996 unpack with 2 args took 0.055054903030396 cufa with 3 args took 0.05647611618042 switch with 3 args took 0.113440990448 unpack with 3 args took 0.060686111450195 cufa with 4 args took 0.061522960662842 switch with 4 args took 0.13974094390869 unpack with 4 args took 0.067041158676147 cufa with 5 args took 0.067083835601807 switch with 5 args took 0.17700290679932 unpack with 5 args took 0.077430009841919 cufa with 100 args took 0.36035990715027
Process exited with code 137.
Output for 7.1.4
cufa with 0 args took 0.042514085769653 switch with 0 args took 0.065317869186401 unpack with 0 args took 0.043259143829346 cufa with 1 args took 0.048556089401245 switch with 1 args took 0.080693006515503 unpack with 1 args took 0.051124811172485 cufa with 2 args took 0.053107023239136 switch with 2 args took 0.094284057617188 unpack with 2 args took 0.054276943206787 cufa with 3 args took 0.055083036422729 switch with 3 args took 0.10640788078308 unpack with 3 args took 0.057289123535156 cufa with 4 args took 0.056979894638062 switch with 4 args took 0.11763310432434 unpack with 4 args took 0.059725999832153 cufa with 5 args took 0.06154203414917 switch with 5 args took 0.15542817115784 unpack with 5 args took 0.059448003768921 cufa with 100 args took 0.32246398925781 switch with 100 args took 0.37249302864075
Process exited with code 137.
Output for 7.1.3
cufa with 0 args took 0.045575141906738 switch with 0 args took 0.065863847732544 unpack with 0 args took 0.042993068695068 cufa with 1 args took 0.050776958465576 switch with 1 args took 0.083497047424316 unpack with 1 args took 0.04961895942688 cufa with 2 args took 0.053826093673706 switch with 2 args took 0.095056056976318 unpack with 2 args took 0.053240060806274 cufa with 3 args took 0.055830001831055 switch with 3 args took 0.10724687576294 unpack with 3 args took 0.054244041442871 cufa with 4 args took 0.059660911560059 switch with 4 args took 0.11992001533508 unpack with 4 args took 0.057312965393066 cufa with 5 args took 0.064003944396973 switch with 5 args took 0.15687584877014 unpack with 5 args took 0.059448957443237 cufa with 100 args took 0.32389783859253 switch with 100 args took 0.3762538433075
Process exited with code 137.
Output for 7.1.2
cufa with 0 args took 0.042206048965454 switch with 0 args took 0.067052841186523 unpack with 0 args took 0.040791988372803 cufa with 1 args took 0.048494100570679 switch with 1 args took 0.084527015686035 unpack with 1 args took 0.050020933151245 cufa with 2 args took 0.05497407913208 switch with 2 args took 0.095463037490845 unpack with 2 args took 0.049440860748291 cufa with 3 args took 0.055305004119873 switch with 3 args took 0.10710787773132 unpack with 3 args took 0.05570387840271 cufa with 4 args took 0.060387134552002 switch with 4 args took 0.11946988105774 unpack with 4 args took 0.056116819381714 cufa with 5 args took 0.061666011810303 switch with 5 args took 0.15722393989563 unpack with 5 args took 0.061349153518677 cufa with 100 args took 0.32207202911377 switch with 100 args took 0.38487601280212
Process exited with code 137.
Output for 7.1.1
cufa with 0 args took 0.043921947479248 switch with 0 args took 0.064029932022095 unpack with 0 args took 0.043674945831299 cufa with 1 args took 0.049729108810425 switch with 1 args took 0.081678152084351 unpack with 1 args took 0.05290699005127 cufa with 2 args took 0.053653001785278 switch with 2 args took 0.092386960983276 unpack with 2 args took 0.054951906204224 cufa with 3 args took 0.057866096496582 switch with 3 args took 0.10595607757568 unpack with 3 args took 0.057547807693481 cufa with 4 args took 0.058693170547485 switch with 4 args took 0.11733913421631 unpack with 4 args took 0.058284044265747 cufa with 5 args took 0.061056852340698 switch with 5 args took 0.15618395805359 unpack with 5 args took 0.061739921569824 cufa with 100 args took 0.32330417633057 switch with 100 args took 0.37571501731873
Process exited with code 137.
Output for 7.1.0
cufa with 0 args took 0.043445110321045 switch with 0 args took 0.07050609588623 unpack with 0 args took 0.043200969696045 cufa with 1 args took 0.052958965301514 switch with 1 args took 0.088382005691528 unpack with 1 args took 0.052491903305054 cufa with 2 args took 0.057585000991821 switch with 2 args took 0.10076403617859 unpack with 2 args took 0.056297063827515 cufa with 3 args took 0.059353113174438 switch with 3 args took 0.10976696014404 unpack with 3 args took 0.057886123657227 cufa with 4 args took 0.061567068099976 switch with 4 args took 0.1201229095459 unpack with 4 args took 0.061930179595947 cufa with 5 args took 0.06770920753479 switch with 5 args took 0.15592098236084 unpack with 5 args took 0.06154203414917 cufa with 100 args took 0.32899308204651
Process exited with code 137.
Output for 7.0.33
cufa with 0 args took 0.042749166488647 switch with 0 args took 0.065566062927246 unpack with 0 args took 0.042031049728394 cufa with 1 args took 0.053498983383179 switch with 1 args took 0.083945989608765 unpack with 1 args took 0.051621913909912 cufa with 2 args took 0.056076049804688 switch with 2 args took 0.10113596916199 unpack with 2 args took 0.055294036865234 cufa with 3 args took 0.05630898475647 switch with 3 args took 0.11349511146545 unpack with 3 args took 0.057990074157715 cufa with 4 args took 0.060212135314941 switch with 4 args took 0.14689993858337 unpack with 4 args took 0.059384107589722 cufa with 5 args took 0.065219879150391 switch with 5 args took 0.16171813011169 unpack with 5 args took 0.061672925949097 cufa with 100 args took 0.35131406784058
Process exited with code 137.
Output for 7.0.32
cufa with 0 args took 0.043053865432739 switch with 0 args took 0.064028978347778 unpack with 0 args took 0.040498018264771 cufa with 1 args took 0.055876970291138 switch with 1 args took 0.087924003601074 unpack with 1 args took 0.051734924316406 cufa with 2 args took 0.056339979171753 switch with 2 args took 0.10080909729004 unpack with 2 args took 0.054521083831787 cufa with 3 args took 0.059552192687988 switch with 3 args took 0.11012291908264 unpack with 3 args took 0.058725833892822 cufa with 4 args took 0.061809778213501 switch with 4 args took 0.14546799659729 unpack with 4 args took 0.058322906494141 cufa with 5 args took 0.066895008087158 switch with 5 args took 0.16169595718384 unpack with 5 args took 0.061655044555664 cufa with 100 args took 0.35579490661621
Process exited with code 137.
Output for 7.0.31
cufa with 0 args took 0.044615030288696 switch with 0 args took 0.06418514251709 unpack with 0 args took 0.041229963302612 cufa with 1 args took 0.054218053817749 switch with 1 args took 0.086641788482666 unpack with 1 args took 0.051375865936279 cufa with 2 args took 0.058099985122681 switch with 2 args took 0.10433197021484 unpack with 2 args took 0.053960084915161 cufa with 3 args took 0.05846118927002 switch with 3 args took 0.11293697357178 unpack with 3 args took 0.060431003570557 cufa with 4 args took 0.061625003814697 switch with 4 args took 0.14612603187561 unpack with 4 args took 0.060744047164917 cufa with 5 args took 0.06404185295105 switch with 5 args took 0.16015195846558 unpack with 5 args took 0.061403036117554 cufa with 100 args took 0.35999202728271
Process exited with code 137.
Output for 7.0.30
cufa with 0 args took 0.046015977859497 switch with 0 args took 0.073828935623169 unpack with 0 args took 0.053824901580811 cufa with 1 args took 0.060920000076294 switch with 1 args took 0.096281051635742 unpack with 1 args took 0.055202007293701 cufa with 2 args took 0.065904140472412 switch with 2 args took 0.099438905715942 unpack with 2 args took 0.054052114486694 cufa with 3 args took 0.058624982833862 switch with 3 args took 0.11128783226013 unpack with 3 args took 0.055951118469238 cufa with 4 args took 0.060606956481934 switch with 4 args took 0.14767503738403 unpack with 4 args took 0.058866024017334 cufa with 5 args took 0.064800024032593 switch with 5 args took 0.16024518013 unpack with 5 args took 0.061316967010498 cufa with 100 args took 0.351243019104
Process exited with code 137.
Output for 7.0.29
cufa with 0 args took 0.041435956954956 switch with 0 args took 0.063725233078003 unpack with 0 args took 0.041835069656372 cufa with 1 args took 0.048597812652588 switch with 1 args took 0.083753108978271 unpack with 1 args took 0.049762964248657 cufa with 2 args took 0.051091909408569 switch with 2 args took 0.098584890365601 unpack with 2 args took 0.052886009216309 cufa with 3 args took 0.054500102996826 switch with 3 args took 0.11179900169373 unpack with 3 args took 0.05750298500061 cufa with 4 args took 0.058346033096313 switch with 4 args took 0.14402914047241 unpack with 4 args took 0.058142900466919 cufa with 5 args took 0.058911085128784 switch with 5 args took 0.15778088569641 unpack with 5 args took 0.062575101852417 cufa with 100 args took 0.32820105552673
Process exited with code 137.
Output for 7.0.28
cufa with 0 args took 0.041003942489624 switch with 0 args took 0.064367055892944 unpack with 0 args took 0.040341138839722 cufa with 1 args took 0.048733949661255 switch with 1 args took 0.085337162017822 unpack with 1 args took 0.048517942428589 cufa with 2 args took 0.052631139755249 switch with 2 args took 0.098191976547241 unpack with 2 args took 0.051548957824707 cufa with 3 args took 0.054118156433105 switch with 3 args took 0.11328411102295 unpack with 3 args took 0.054882049560547 cufa with 4 args took 0.055615186691284 switch with 4 args took 0.1450879573822 unpack with 4 args took 0.057621002197266 cufa with 5 args took 0.058141946792603 switch with 5 args took 0.15934014320374 unpack with 5 args took 0.059970855712891 cufa with 100 args took 0.3262951374054 switch with 100 args took 0.37592101097107
Process exited with code 137.
Output for 7.0.27
cufa with 0 args took 0.045180082321167 switch with 0 args took 0.066656112670898 unpack with 0 args took 0.04152512550354 cufa with 1 args took 0.049940824508667 switch with 1 args took 0.086965799331665 unpack with 1 args took 0.050357103347778 cufa with 2 args took 0.052600145339966 switch with 2 args took 0.10080194473267 unpack with 2 args took 0.053659915924072 cufa with 3 args took 0.056417942047119 switch with 3 args took 0.11261606216431 unpack with 3 args took 0.05486011505127 cufa with 4 args took 0.058393001556396 switch with 4 args took 0.14602994918823 unpack with 4 args took 0.05686092376709 cufa with 5 args took 0.060019969940186 switch with 5 args took 0.16028809547424 unpack with 5 args took 0.060034036636353 cufa with 100 args took 0.32556486129761
Process exited with code 137.
Output for 7.0.26
cufa with 0 args took 0.041916131973267 switch with 0 args took 0.066431999206543 unpack with 0 args took 0.042912006378174 cufa with 1 args took 0.05074405670166 switch with 1 args took 0.087093114852905 unpack with 1 args took 0.051383972167969 cufa with 2 args took 0.052985906600952 switch with 2 args took 0.10090017318726 unpack with 2 args took 0.05664587020874 cufa with 3 args took 0.056037902832031 switch with 3 args took 0.11440014839172 unpack with 3 args took 0.058565855026245 cufa with 4 args took 0.058448076248169 switch with 4 args took 0.14761400222778 unpack with 4 args took 0.060867071151733 cufa with 5 args took 0.058955907821655 switch with 5 args took 0.16184997558594 unpack with 5 args took 0.060647010803223 cufa with 100 args took 0.3269579410553
Process exited with code 137.
Output for 7.0.25
cufa with 0 args took 0.039892911911011 switch with 0 args took 0.067262887954712 unpack with 0 args took 0.041023969650269 cufa with 1 args took 0.046196937561035 switch with 1 args took 0.086319923400879 unpack with 1 args took 0.04587721824646 cufa with 2 args took 0.049585103988647 switch with 2 args took 0.10024881362915 unpack with 2 args took 0.049919128417969 cufa with 3 args took 0.051880121231079 switch with 3 args took 0.11498785018921 unpack with 3 args took 0.051890850067139 cufa with 4 args took 0.054210901260376 switch with 4 args took 0.15759801864624 unpack with 4 args took 0.055815935134888 cufa with 5 args took 0.056107044219971 switch with 5 args took 0.17492914199829 unpack with 5 args took 0.059658050537109 cufa with 100 args took 0.32768082618713
Process exited with code 137.
Output for 7.0.24
cufa with 0 args took 0.040580034255981 switch with 0 args took 0.065424919128418 unpack with 0 args took 0.038058042526245 cufa with 1 args took 0.045681953430176 switch with 1 args took 0.085397958755493 unpack with 1 args took 0.049277067184448 cufa with 2 args took 0.047951936721802 switch with 2 args took 0.10025095939636 unpack with 2 args took 0.053574800491333 cufa with 3 args took 0.052426815032959 switch with 3 args took 0.1179461479187 unpack with 3 args took 0.05277681350708 cufa with 4 args took 0.053261995315552 switch with 4 args took 0.15790796279907 unpack with 4 args took 0.057336091995239 cufa with 5 args took 0.056845903396606 switch with 5 args took 0.1711220741272 unpack with 5 args took 0.059523105621338 cufa with 100 args took 0.32229685783386
Process exited with code 137.
Output for 7.0.23
cufa with 0 args took 0.04119086265564 switch with 0 args took 0.066113948822021 unpack with 0 args took 0.038690090179443 cufa with 1 args took 0.051084995269775 switch with 1 args took 0.086875915527344 unpack with 1 args took 0.048454999923706 cufa with 2 args took 0.052212953567505 switch with 2 args took 0.10073089599609 unpack with 2 args took 0.051397085189819 cufa with 3 args took 0.056262969970703 switch with 3 args took 0.11528086662292 unpack with 3 args took 0.055026054382324 cufa with 4 args took 0.05790114402771 switch with 4 args took 0.14699101448059 unpack with 4 args took 0.057681083679199 cufa with 5 args took 0.060195922851562 switch with 5 args took 0.16456890106201 unpack with 5 args took 0.061257123947144 cufa with 100 args took 0.35515213012695
Process exited with code 137.
Output for 7.0.22
cufa with 0 args took 0.041276931762695 switch with 0 args took 0.062312841415405 unpack with 0 args took 0.042523145675659 cufa with 1 args took 0.050517082214355 switch with 1 args took 0.084394931793213 unpack with 1 args took 0.049405097961426 cufa with 2 args took 0.051269054412842 switch with 2 args took 0.099529027938843 unpack with 2 args took 0.055714130401611 cufa with 3 args took 0.054742813110352 switch with 3 args took 0.11344909667969 unpack with 3 args took 0.054853916168213 cufa with 4 args took 0.058845043182373 switch with 4 args took 0.14711403846741 unpack with 4 args took 0.058901071548462 cufa with 5 args took 0.059169054031372 switch with 5 args took 0.16173219680786 unpack with 5 args took 0.060397863388062 cufa with 100 args took 0.33252906799316
Process exited with code 137.
Output for 7.0.21
cufa with 0 args took 0.040647983551025 switch with 0 args took 0.066191911697388 unpack with 0 args took 0.041344165802002 cufa with 1 args took 0.048404932022095 switch with 1 args took 0.087677001953125 unpack with 1 args took 0.050498008728027 cufa with 2 args took 0.053621768951416 switch with 2 args took 0.10033202171326 unpack with 2 args took 0.055613994598389 cufa with 3 args took 0.053867101669312 switch with 3 args took 0.11607789993286 unpack with 3 args took 0.057787895202637 cufa with 4 args took 0.056043863296509 switch with 4 args took 0.14970898628235 unpack with 4 args took 0.058917045593262 cufa with 5 args took 0.059545040130615 switch with 5 args took 0.16310906410217 unpack with 5 args took 0.06704306602478 cufa with 100 args took 0.33029294013977
Process exited with code 137.
Output for 7.0.20
cufa with 0 args took 0.041695833206177 switch with 0 args took 0.067284107208252 unpack with 0 args took 0.042333841323853 cufa with 1 args took 0.048810958862305 switch with 1 args took 0.085745096206665 unpack with 1 args took 0.049746036529541 cufa with 2 args took 0.054405212402344 switch with 2 args took 0.099225044250488 unpack with 2 args took 0.053770065307617 cufa with 3 args took 0.053789138793945 switch with 3 args took 0.11219501495361 unpack with 3 args took 0.056428909301758 cufa with 4 args took 0.056443929672241 switch with 4 args took 0.14571285247803 unpack with 4 args took 0.059085130691528 cufa with 5 args took 0.059628009796143 switch with 5 args took 0.16063380241394 unpack with 5 args took 0.064316987991333 cufa with 100 args took 0.32905888557434
Process exited with code 137.
Output for 7.0.19
cufa with 0 args took 0.040682077407837 switch with 0 args took 0.068572044372559 unpack with 0 args took 0.043529987335205 cufa with 1 args took 0.04931902885437 switch with 1 args took 0.092837810516357 unpack with 1 args took 0.053428173065186 cufa with 2 args took 0.053667068481445 switch with 2 args took 0.10894083976746 unpack with 2 args took 0.057021141052246 cufa with 3 args took 0.058876991271973 switch with 3 args took 0.11976099014282 unpack with 3 args took 0.059354066848755 cufa with 4 args took 0.056777000427246 switch with 4 args took 0.15220904350281 unpack with 4 args took 0.062501907348633 cufa with 5 args took 0.06337308883667 switch with 5 args took 0.1677348613739 unpack with 5 args took 0.066443920135498 cufa with 100 args took 0.34714198112488
Process exited with code 137.
Output for 7.0.18
cufa with 0 args took 0.043298006057739 switch with 0 args took 0.073117017745972 unpack with 0 args took 0.045541048049927 cufa with 1 args took 0.047497034072876 switch with 1 args took 0.091233015060425 unpack with 1 args took 0.052411079406738 cufa with 2 args took 0.050539970397949 switch with 2 args took 0.10537385940552 unpack with 2 args took 0.056455850601196 cufa with 3 args took 0.052941083908081 switch with 3 args took 0.11682796478271 unpack with 3 args took 0.057715892791748 cufa with 4 args took 0.05488395690918 switch with 4 args took 0.14972996711731 unpack with 4 args took 0.060013055801392 cufa with 5 args took 0.057451963424683 switch with 5 args took 0.16440677642822 unpack with 5 args took 0.062211990356445 cufa with 100 args took 0.32748103141785
Process exited with code 137.
Output for 7.0.17
cufa with 0 args took 0.043185949325562 switch with 0 args took 0.063710927963257 unpack with 0 args took 0.040447950363159 cufa with 1 args took 0.050082921981812 switch with 1 args took 0.083871841430664 unpack with 1 args took 0.051223039627075 cufa with 2 args took 0.053909063339233 switch with 2 args took 0.099585056304932 unpack with 2 args took 0.055614948272705 cufa with 3 args took 0.056911945343018 switch with 3 args took 0.11700701713562 unpack with 3 args took 0.062440872192383 cufa with 4 args took 0.066873073577881 switch with 4 args took 0.15790796279907 unpack with 4 args took 0.062077045440674 cufa with 5 args took 0.065835952758789 switch with 5 args took 0.18207621574402 unpack with 5 args took 0.070214986801147 cufa with 100 args took 0.35545492172241
Process exited with code 137.
Output for 7.0.16
cufa with 0 args took 0.039973020553589 switch with 0 args took 0.066566944122314 unpack with 0 args took 0.045909881591797 cufa with 1 args took 0.045899868011475 switch with 1 args took 0.087857961654663 unpack with 1 args took 0.05221700668335 cufa with 2 args took 0.049497127532959 switch with 2 args took 0.099895000457764 unpack with 2 args took 0.056137084960938 cufa with 3 args took 0.051540851593018 switch with 3 args took 0.11397385597229 unpack with 3 args took 0.057553052902222 cufa with 4 args took 0.058575868606567 switch with 4 args took 0.14803814888 unpack with 4 args took 0.061820983886719 cufa with 5 args took 0.060542821884155 switch with 5 args took 0.16440486907959 unpack with 5 args took 0.067724943161011 cufa with 100 args took 0.33285999298096
Process exited with code 137.
Output for 7.0.15
cufa with 0 args took 0.039875984191895 switch with 0 args took 0.066306114196777 unpack with 0 args took 0.041635036468506 cufa with 1 args took 0.050966024398804 switch with 1 args took 0.09400200843811 unpack with 1 args took 0.05330491065979 cufa with 2 args took 0.054445028305054 switch with 2 args took 0.10895991325378 unpack with 2 args took 0.05832314491272 cufa with 3 args took 0.058454036712646 switch with 3 args took 0.12145018577576 unpack with 3 args took 0.058665990829468 cufa with 4 args took 0.061663150787354 switch with 4 args took 0.152428150177 unpack with 4 args took 0.063366889953613 cufa with 5 args took 0.064702033996582 switch with 5 args took 0.16738891601562 unpack with 5 args took 0.067272901535034 cufa with 100 args took 0.42491602897644
Process exited with code 137.
Output for 7.0.14
cufa with 0 args took 0.052263021469116 switch with 0 args took 0.069059133529663 unpack with 0 args took 0.041165828704834 cufa with 1 args took 0.048936128616333 switch with 1 args took 0.08842396736145 unpack with 1 args took 0.050971031188965 cufa with 2 args took 0.052097082138062 switch with 2 args took 0.099985837936401 unpack with 2 args took 0.054039001464844 cufa with 3 args took 0.059140920639038 switch with 3 args took 0.11429476737976 unpack with 3 args took 0.055694818496704 cufa with 4 args took 0.057107925415039 switch with 4 args took 0.15567588806152 unpack with 4 args took 0.058802127838135 cufa with 5 args took 0.058174133300781 switch with 5 args took 0.16262602806091 unpack with 5 args took 0.060750961303711 cufa with 100 args took 0.33154010772705
Process exited with code 137.
Output for 7.0.13
cufa with 0 args took 0.043945074081421 switch with 0 args took 0.065917015075684 unpack with 0 args took 0.039923906326294 cufa with 1 args took 0.053750991821289 switch with 1 args took 0.088165044784546 unpack with 1 args took 0.053112030029297 cufa with 2 args took 0.062931060791016 switch with 2 args took 0.10292911529541 unpack with 2 args took 0.051961898803711 cufa with 3 args took 0.06093692779541 switch with 3 args took 0.1171350479126 unpack with 3 args took 0.054641008377075 cufa with 4 args took 0.060844898223877 switch with 4 args took 0.15149998664856 unpack with 4 args took 0.057232141494751 cufa with 5 args took 0.063350915908813 switch with 5 args took 0.16320991516113 unpack with 5 args took 0.060320854187012 cufa with 100 args took 0.32820796966553
Process exited with code 137.
Output for 7.0.12
cufa with 0 args took 0.044051885604858 switch with 0 args took 0.064727783203125 unpack with 0 args took 0.040987968444824 cufa with 1 args took 0.050583124160767 switch with 1 args took 0.086623191833496 unpack with 1 args took 0.052649021148682 cufa with 2 args took 0.054053068161011 switch with 2 args took 0.10028004646301 unpack with 2 args took 0.055369138717651 cufa with 3 args took 0.055421113967896 switch with 3 args took 0.11266684532166 unpack with 3 args took 0.058014869689941 cufa with 4 args took 0.059421062469482 switch with 4 args took 0.16220307350159 unpack with 4 args took 0.069653034210205 cufa with 5 args took 0.066361904144287 switch with 5 args took 0.17119693756104 unpack with 5 args took 0.071239948272705 cufa with 100 args took 0.36157202720642
Process exited with code 137.
Output for 7.0.11
cufa with 0 args took 0.041309118270874 switch with 0 args took 0.063193798065186 unpack with 0 args took 0.037972927093506 cufa with 1 args took 0.049029111862183 switch with 1 args took 0.083402156829834 unpack with 1 args took 0.047603845596313 cufa with 2 args took 0.052420854568481 switch with 2 args took 0.096730947494507 unpack with 2 args took 0.048660039901733 cufa with 3 args took 0.054290056228638 switch with 3 args took 0.10840582847595 unpack with 3 args took 0.05151104927063 cufa with 4 args took 0.057111024856567 switch with 4 args took 0.15288591384888 unpack with 4 args took 0.055310010910034 cufa with 5 args took 0.059936046600342 switch with 5 args took 0.16627788543701 unpack with 5 args took 0.059839963912964 cufa with 100 args took 0.32744002342224
Process exited with code 137.
Output for 7.0.10
cufa with 0 args took 0.041831016540527 switch with 0 args took 0.065630197525024 unpack with 0 args took 0.041522026062012 cufa with 1 args took 0.048455953598022 switch with 1 args took 0.087476968765259 unpack with 1 args took 0.049698114395142 cufa with 2 args took 0.05290699005127 switch with 2 args took 0.10067176818848 unpack with 2 args took 0.052700042724609 cufa with 3 args took 0.056221008300781 switch with 3 args took 0.11370587348938 unpack with 3 args took 0.054628133773804 cufa with 4 args took 0.057231903076172 switch with 4 args took 0.15045499801636 unpack with 4 args took 0.057100057601929 cufa with 5 args took 0.05977201461792 switch with 5 args took 0.16480898857117 unpack with 5 args took 0.059590816497803 cufa with 100 args took 0.32717800140381
Process exited with code 137.
Output for 7.0.9
cufa with 0 args took 0.043779850006104 switch with 0 args took 0.066173076629639 unpack with 0 args took 0.041789054870605 cufa with 1 args took 0.050868034362793 switch with 1 args took 0.0886070728302 unpack with 1 args took 0.050088882446289 cufa with 2 args took 0.055208921432495 switch with 2 args took 0.10111904144287 unpack with 2 args took 0.052800893783569 cufa with 3 args took 0.056146144866943 switch with 3 args took 0.11813402175903 unpack with 3 args took 0.055182933807373 cufa with 4 args took 0.057245016098022 switch with 4 args took 0.1471529006958 unpack with 4 args took 0.057690858840942 cufa with 5 args took 0.061742067337036 switch with 5 args took 0.16030716896057 unpack with 5 args took 0.060579776763916 cufa with 100 args took 0.32611584663391
Process exited with code 137.
Output for 7.0.8
cufa with 0 args took 0.04177188873291 switch with 0 args took 0.069498062133789 unpack with 0 args took 0.042517900466919 cufa with 1 args took 0.051899909973145 switch with 1 args took 0.089808940887451 unpack with 1 args took 0.052900791168213 cufa with 2 args took 0.054567098617554 switch with 2 args took 0.10678601264954 unpack with 2 args took 0.056122064590454 cufa with 3 args took 0.057714939117432 switch with 3 args took 0.11770486831665 unpack with 3 args took 0.057695865631104 cufa with 4 args took 0.059530973434448 switch with 4 args took 0.15509104728699 unpack with 4 args took 0.061370849609375 cufa with 5 args took 0.061542987823486 switch with 5 args took 0.16957688331604 unpack with 5 args took 0.063225030899048 cufa with 100 args took 0.33420395851135
Process exited with code 137.
Output for 7.0.7
cufa with 0 args took 0.040601015090942 switch with 0 args took 0.067577123641968 unpack with 0 args took 0.039561033248901 cufa with 1 args took 0.051910161972046 switch with 1 args took 0.089314937591553 unpack with 1 args took 0.053561925888062 cufa with 2 args took 0.062401056289673 switch with 2 args took 0.1132071018219 unpack with 2 args took 0.062003135681152 cufa with 3 args took 0.063514947891235 switch with 3 args took 0.12072491645813 unpack with 3 args took 0.059911966323853 cufa with 4 args took 0.066198825836182 switch with 4 args took 0.17161393165588 unpack with 4 args took 0.061580896377563 cufa with 5 args took 0.06143593788147 switch with 5 args took 0.16752481460571 unpack with 5 args took 0.060691833496094 cufa with 100 args took 0.33813309669495
Process exited with code 137.
Output for 7.0.6
cufa with 0 args took 0.042908906936646 switch with 0 args took 0.070473909378052 unpack with 0 args took 0.037939071655273 cufa with 1 args took 0.049512147903442 switch with 1 args took 0.084804058074951 unpack with 1 args took 0.047432899475098 cufa with 2 args took 0.052567005157471 switch with 2 args took 0.1015419960022 unpack with 2 args took 0.050909996032715 cufa with 3 args took 0.056842803955078 switch with 3 args took 0.11069703102112 unpack with 3 args took 0.052973985671997 cufa with 4 args took 0.058890819549561 switch with 4 args took 0.15235114097595 unpack with 4 args took 0.056060075759888 cufa with 5 args took 0.060914039611816 switch with 5 args took 0.1682300567627 unpack with 5 args took 0.059993982315063 cufa with 100 args took 0.33102297782898
Process exited with code 137.
Output for 7.0.5
cufa with 0 args took 0.048599004745483 switch with 0 args took 0.066724061965942 unpack with 0 args took 0.041861057281494 cufa with 1 args took 0.053180932998657 switch with 1 args took 0.088366985321045 unpack with 1 args took 0.052377939224243 cufa with 2 args took 0.055315017700195 switch with 2 args took 0.10119080543518 unpack with 2 args took 0.054045915603638 cufa with 3 args took 0.058203935623169 switch with 3 args took 0.11652803421021 unpack with 3 args took 0.056860208511353 cufa with 4 args took 0.059961080551147 switch with 4 args took 0.15021991729736 unpack with 4 args took 0.058861970901489 cufa with 5 args took 0.061639070510864 switch with 5 args took 0.16351103782654 unpack with 5 args took 0.060816049575806 cufa with 100 args took 0.32488203048706
Process exited with code 137.
Output for 7.0.4
cufa with 0 args took 0.042388916015625 switch with 0 args took 0.064098834991455 unpack with 0 args took 0.03888201713562 cufa with 1 args took 0.048877000808716 switch with 1 args took 0.083884954452515 unpack with 1 args took 0.048459053039551 cufa with 2 args took 0.053506135940552 switch with 2 args took 0.098658084869385 unpack with 2 args took 0.054085969924927 cufa with 3 args took 0.05432915687561 switch with 3 args took 0.11213397979736 unpack with 3 args took 0.055145978927612 cufa with 4 args took 0.058563947677612 switch with 4 args took 0.1462869644165 unpack with 4 args took 0.059471845626831 cufa with 5 args took 0.058835029602051 switch with 5 args took 0.16067099571228 unpack with 5 args took 0.061897993087769 cufa with 100 args took 0.32584619522095
Process exited with code 137.
Output for 7.0.3
cufa with 0 args took 0.045086860656738 switch with 0 args took 0.067178010940552 unpack with 0 args took 0.043817043304443 cufa with 1 args took 0.051014184951782 switch with 1 args took 0.089098930358887 unpack with 1 args took 0.052170038223267 cufa with 2 args took 0.053798913955688 switch with 2 args took 0.10233998298645 unpack with 2 args took 0.05578088760376 cufa with 3 args took 0.058248996734619 switch with 3 args took 0.11549592018127 unpack with 3 args took 0.059289932250977 cufa with 4 args took 0.059335947036743 switch with 4 args took 0.15244197845459 unpack with 4 args took 0.061082124710083 cufa with 5 args took 0.060796976089478 switch with 5 args took 0.16012406349182 unpack with 5 args took 0.065478086471558 cufa with 100 args took 0.32622885704041
Process exited with code 137.
Output for 7.0.2
cufa with 0 args took 0.045954942703247 switch with 0 args took 0.068578004837036 unpack with 0 args took 0.039397001266479 cufa with 1 args took 0.055795907974243 switch with 1 args took 0.088109016418457 unpack with 1 args took 0.049448013305664 cufa with 2 args took 0.055224895477295 switch with 2 args took 0.10067105293274 unpack with 2 args took 0.052826881408691 cufa with 3 args took 0.05859899520874 switch with 3 args took 0.11185908317566 unpack with 3 args took 0.056632995605469 cufa with 4 args took 0.061867952346802 switch with 4 args took 0.15112113952637 unpack with 4 args took 0.057635068893433 cufa with 5 args took 0.064499139785767 switch with 5 args took 0.1619861125946 unpack with 5 args took 0.060702085494995 cufa with 100 args took 0.3534300327301
Process exited with code 137.
Output for 7.0.1
cufa with 0 args took 0.050956010818481 switch with 0 args took 0.069977998733521 unpack with 0 args took 0.039705038070679 cufa with 1 args took 0.05633807182312 switch with 1 args took 0.084763765335083 unpack with 1 args took 0.045743942260742 cufa with 2 args took 0.056467056274414 switch with 2 args took 0.097959995269775 unpack with 2 args took 0.04948902130127 cufa with 3 args took 0.059489011764526 switch with 3 args took 0.1110520362854 unpack with 3 args took 0.051037073135376 cufa with 4 args took 0.065250158309937 switch with 4 args took 0.14800119400024 unpack with 4 args took 0.055279970169067 cufa with 5 args took 0.062386989593506 switch with 5 args took 0.1606080532074 unpack with 5 args took 0.060343980789185 cufa with 100 args took 0.33725118637085
Process exited with code 137.
Output for 7.0.0
cufa with 0 args took 0.048645973205566 switch with 0 args took 0.080067157745361 unpack with 0 args took 0.051241159439087 cufa with 1 args took 0.056385040283203 switch with 1 args took 0.10419416427612 unpack with 1 args took 0.060704946517944 cufa with 2 args took 0.055947065353394 switch with 2 args took 0.1041738986969 unpack with 2 args took 0.056472063064575 cufa with 3 args took 0.057176113128662 switch with 3 args took 0.11747813224792 unpack with 3 args took 0.058233976364136 cufa with 4 args took 0.059602975845337 switch with 4 args took 0.15536999702454 unpack with 4 args took 0.061630964279175 cufa with 5 args took 0.061731100082397 switch with 5 args took 0.16611504554749 unpack with 5 args took 0.065026044845581 cufa with 100 args took 0.33157801628113
Process exited with code 137.
Output for 5.6.40
cufa with 0 args took 0.34387683868408 switch with 0 args took 0.19032192230225 unpack with 0 args took 0.098366975784302 cufa with 1 args took 0.40697312355042 switch with 1 args took 0.23516607284546 unpack with 1 args took 0.11510396003723 cufa with 2 args took 0.44223093986511
Process exited with code 137.
Output for 5.6.39
cufa with 0 args took 0.35066199302673 switch with 0 args took 0.20178890228271 unpack with 0 args took 0.096807956695557 cufa with 1 args took 0.41930198669434 switch with 1 args took 0.23247098922729 unpack with 1 args took 0.11624002456665 cufa with 2 args took 0.45155501365662
Process exited with code 137.
Output for 5.6.38
cufa with 0 args took 0.35112309455872 switch with 0 args took 0.18640613555908 unpack with 0 args took 0.095277070999146 cufa with 1 args took 0.4173641204834 switch with 1 args took 0.23320293426514 unpack with 1 args took 0.11516189575195 cufa with 2 args took 0.44303798675537
Process exited with code 137.
Output for 5.6.37
cufa with 0 args took 0.36453700065613 switch with 0 args took 0.20213198661804 unpack with 0 args took 0.1146559715271 cufa with 1 args took 0.43009090423584 switch with 1 args took 0.23236799240112 unpack with 1 args took 0.11521601676941 cufa with 2 args took 0.44101810455322
Process exited with code 137.
Output for 5.6.36
cufa with 0 args took 0.34940600395203 switch with 0 args took 0.18644404411316 unpack with 0 args took 0.096991062164307 cufa with 1 args took 0.40794610977173 switch with 1 args took 0.23436808586121 unpack with 1 args took 0.11611700057983 cufa with 2 args took 0.43455505371094
Process exited with code 137.
Output for 5.6.35
cufa with 0 args took 0.34046387672424 switch with 0 args took 0.18987798690796 unpack with 0 args took 0.097146987915039 cufa with 1 args took 0.40200090408325 switch with 1 args took 0.23254179954529 unpack with 1 args took 0.1155219078064 cufa with 2 args took 0.43001508712769
Process exited with code 137.
Output for 5.6.34
cufa with 0 args took 0.33979415893555 switch with 0 args took 0.19209599494934 unpack with 0 args took 0.098981142044067 cufa with 1 args took 0.39976906776428 switch with 1 args took 0.23281979560852 unpack with 1 args took 0.11705994606018 cufa with 2 args took 0.43339014053345
Process exited with code 137.
Output for 5.6.33
cufa with 0 args took 0.33479285240173 switch with 0 args took 0.1864869594574 unpack with 0 args took 0.096256017684937 cufa with 1 args took 0.40779590606689 switch with 1 args took 0.23625111579895 unpack with 1 args took 0.1151909828186 cufa with 2 args took 0.44039297103882
Process exited with code 137.
Output for 5.6.32
cufa with 0 args took 0.34738492965698 switch with 0 args took 0.18970704078674 unpack with 0 args took 0.10487198829651 cufa with 1 args took 0.41329193115234 switch with 1 args took 0.22816610336304 unpack with 1 args took 0.11878895759583 cufa with 2 args took 0.43997812271118
Process exited with code 137.
Output for 5.6.31
cufa with 0 args took 0.34574913978577 switch with 0 args took 0.19700598716736 unpack with 0 args took 0.096101045608521 cufa with 1 args took 0.41955494880676 switch with 1 args took 0.23084115982056 unpack with 1 args took 0.11870813369751 cufa with 2 args took 0.44209694862366
Process exited with code 137.
Output for 5.6.30
cufa with 0 args took 0.34631490707397 switch with 0 args took 0.18769502639771 unpack with 0 args took 0.097909927368164 cufa with 1 args took 0.41910004615784 switch with 1 args took 0.23132705688477 unpack with 1 args took 0.11484384536743 cufa with 2 args took 0.45436191558838
Process exited with code 137.
Output for 5.6.29
cufa with 0 args took 0.37172389030457 switch with 0 args took 0.20553493499756 unpack with 0 args took 0.098955869674683 cufa with 1 args took 0.41515707969666 switch with 1 args took 0.2402081489563 unpack with 1 args took 0.12389302253723 cufa with 2 args took 0.44011497497559
Process exited with code 137.
Output for 5.6.28
cufa with 0 args took 0.34212779998779 switch with 0 args took 0.19162583351135 unpack with 0 args took 0.097909927368164 cufa with 1 args took 0.41992497444153 switch with 1 args took 0.23589587211609 unpack with 1 args took 0.11647391319275 cufa with 2 args took 0.44767785072327
Process exited with code 137.
Output for 5.6.27
cufa with 0 args took 0.34616589546204 switch with 0 args took 0.19477009773254 unpack with 0 args took 0.096595048904419 cufa with 1 args took 0.40971207618713 switch with 1 args took 0.23680996894836 unpack with 1 args took 0.11544704437256 cufa with 2 args took 0.43986105918884
Process exited with code 137.
Output for 5.6.26
cufa with 0 args took 0.34059691429138 switch with 0 args took 0.19005489349365 unpack with 0 args took 0.094831943511963 cufa with 1 args took 0.41173410415649 switch with 1 args took 0.23467206954956 unpack with 1 args took 0.11492896080017 cufa with 2 args took 0.43447709083557
Process exited with code 137.
Output for 5.6.25
cufa with 0 args took 0.3428738117218 switch with 0 args took 0.19207406044006 unpack with 0 args took 0.093650102615356 cufa with 1 args took 0.41290283203125 switch with 1 args took 0.22808790206909 unpack with 1 args took 0.1142749786377 cufa with 2 args took 0.43742609024048
Process exited with code 137.
Output for 5.6.24
cufa with 0 args took 0.34988403320312 switch with 0 args took 0.18618988990784 unpack with 0 args took 0.090945959091187 cufa with 1 args took 0.41252613067627 switch with 1 args took 0.22850108146667 unpack with 1 args took 0.1149570941925 cufa with 2 args took 0.43928384780884
Process exited with code 137.
Output for 5.6.23
cufa with 0 args took 0.34656405448914 switch with 0 args took 0.19496607780457 unpack with 0 args took 0.096678018569946 cufa with 1 args took 0.40096497535706 switch with 1 args took 0.23879313468933 unpack with 1 args took 0.12158918380737 cufa with 2 args took 0.47634291648865
Process exited with code 137.
Output for 5.6.22
cufa with 0 args took 0.35980200767517 switch with 0 args took 0.1975519657135 unpack with 0 args took 0.10553598403931 cufa with 1 args took 0.41578698158264 switch with 1 args took 0.23963594436646 unpack with 1 args took 0.12660312652588 cufa with 2 args took 0.45450305938721
Process exited with code 137.
Output for 5.6.21
cufa with 0 args took 0.34533500671387 switch with 0 args took 0.18810606002808 unpack with 0 args took 0.10493803024292 cufa with 1 args took 0.41160893440247 switch with 1 args took 0.23786497116089 unpack with 1 args took 0.12336397171021 cufa with 2 args took 0.44119095802307
Process exited with code 137.
Output for 5.6.20
cufa with 0 args took 0.35853600502014 switch with 0 args took 0.19287586212158 unpack with 0 args took 0.090618133544922 cufa with 1 args took 0.42615008354187 switch with 1 args took 0.2428879737854 unpack with 1 args took 0.11647200584412 cufa with 2 args took 0.45795607566833
Process exited with code 137.
Output for 5.6.19
cufa with 0 args took 0.35518097877502 switch with 0 args took 0.19876408576965 unpack with 0 args took 0.097497940063477 cufa with 1 args took 0.41576409339905 switch with 1 args took 0.23610186576843 unpack with 1 args took 0.12080788612366 cufa with 2 args took 0.4382381439209
Process exited with code 137.
Output for 5.6.18
cufa with 0 args took 0.34861397743225 switch with 0 args took 0.19594812393188 unpack with 0 args took 0.093000888824463 cufa with 1 args took 0.40982007980347 switch with 1 args took 0.23998785018921 unpack with 1 args took 0.11755013465881 cufa with 2 args took 0.44105315208435
Process exited with code 137.
Output for 5.6.17
cufa with 0 args took 0.33903408050537 switch with 0 args took 0.19815111160278 unpack with 0 args took 0.094491958618164 cufa with 1 args took 0.40061402320862 switch with 1 args took 0.23699903488159 unpack with 1 args took 0.11491513252258 cufa with 2 args took 0.43471598625183
Process exited with code 137.
Output for 5.6.16
cufa with 0 args took 0.33517909049988 switch with 0 args took 0.18879580497742 unpack with 0 args took 0.097807884216309 cufa with 1 args took 0.40741610527039 switch with 1 args took 0.23094797134399 unpack with 1 args took 0.11449980735779 cufa with 2 args took 0.43725395202637
Process exited with code 137.
Output for 5.6.15
cufa with 0 args took 0.32887005805969 switch with 0 args took 0.19452500343323 unpack with 0 args took 0.095067977905273 cufa with 1 args took 0.406005859375 switch with 1 args took 0.2360258102417 unpack with 1 args took 0.11641597747803 cufa with 2 args took 0.42870187759399
Process exited with code 137.
Output for 5.6.14
cufa with 0 args took 0.33748888969421 switch with 0 args took 0.18810391426086 unpack with 0 args took 0.09644079208374 cufa with 1 args took 0.40644216537476 switch with 1 args took 0.23142886161804 unpack with 1 args took 0.11477518081665 cufa with 2 args took 0.44050097465515
Process exited with code 137.
Output for 5.6.13
cufa with 0 args took 0.34552884101868 switch with 0 args took 0.1986231803894 unpack with 0 args took 0.099642992019653 cufa with 1 args took 0.4313600063324 switch with 1 args took 0.2407751083374 unpack with 1 args took 0.11893677711487 cufa with 2 args took 0.44700884819031
Process exited with code 137.
Output for 5.6.12
cufa with 0 args took 0.40240097045898 switch with 0 args took 0.21359515190125 unpack with 0 args took 0.09945821762085 cufa with 1 args took 0.47000193595886 switch with 1 args took 0.25338006019592 unpack with 1 args took 0.11610388755798
Process exited with code 137.
Output for 5.6.11
cufa with 0 args took 0.34778594970703 switch with 0 args took 0.19574403762817 unpack with 0 args took 0.098023891448975 cufa with 1 args took 0.41132307052612 switch with 1 args took 0.23647212982178 unpack with 1 args took 0.11730098724365 cufa with 2 args took 0.43705296516418
Process exited with code 137.
Output for 5.6.10
cufa with 0 args took 0.35203099250793 switch with 0 args took 0.19204306602478 unpack with 0 args took 0.1034882068634 cufa with 1 args took 0.41273999214172 switch with 1 args took 0.23353981971741 unpack with 1 args took 0.11751198768616 cufa with 2 args took 0.44743013381958
Process exited with code 137.
Output for 5.6.9
cufa with 0 args took 0.34170889854431 switch with 0 args took 0.18769192695618 unpack with 0 args took 0.09629487991333 cufa with 1 args took 0.40386390686035 switch with 1 args took 0.22397708892822 unpack with 1 args took 0.11641192436218 cufa with 2 args took 0.43428993225098
Process exited with code 137.
Output for 5.6.8
cufa with 0 args took 0.33834314346313 switch with 0 args took 0.19402599334717 unpack with 0 args took 0.093309164047241 cufa with 1 args took 0.40319609642029 switch with 1 args took 0.23585987091064 unpack with 1 args took 0.11681699752808 cufa with 2 args took 0.43888902664185
Process exited with code 137.
Output for 5.6.7
cufa with 0 args took 0.33980417251587 switch with 0 args took 0.19071316719055 unpack with 0 args took 0.095612049102783 cufa with 1 args took 0.40762805938721 switch with 1 args took 0.23597598075867 unpack with 1 args took 0.11669397354126 cufa with 2 args took 0.44013810157776
Process exited with code 137.
Output for 5.6.6
cufa with 0 args took 0.34985995292664 switch with 0 args took 0.1916069984436 unpack with 0 args took 0.09578800201416 cufa with 1 args took 0.44987010955811 switch with 1 args took 0.24240303039551 unpack with 1 args took 0.12017798423767 cufa with 2 args took 0.45725393295288
Process exited with code 137.
Output for 5.6.5
cufa with 0 args took 0.36544394493103 switch with 0 args took 0.19309496879578 unpack with 0 args took 0.096530199050903 cufa with 1 args took 0.41379189491272 switch with 1 args took 0.23266100883484 unpack with 1 args took 0.11614680290222 cufa with 2 args took 0.43826699256897
Process exited with code 137.
Output for 5.6.4
cufa with 0 args took 0.35665607452393 switch with 0 args took 0.19602298736572 unpack with 0 args took 0.092113018035889 cufa with 1 args took 0.42578315734863 switch with 1 args took 0.24145483970642 unpack with 1 args took 0.11600089073181 cufa with 2 args took 0.44726800918579
Process exited with code 137.
Output for 5.6.3
cufa with 0 args took 0.34415507316589 switch with 0 args took 0.1921079158783 unpack with 0 args took 0.093256950378418 cufa with 1 args took 0.42125415802002 switch with 1 args took 0.23417091369629 unpack with 1 args took 0.11509299278259 cufa with 2 args took 0.4407651424408
Process exited with code 137.
Output for 5.6.2
cufa with 0 args took 0.34526014328003 switch with 0 args took 0.19132804870605 unpack with 0 args took 0.096916913986206 cufa with 1 args took 0.41577410697937 switch with 1 args took 0.23005104064941 unpack with 1 args took 0.11636590957642 cufa with 2 args took 0.44449186325073
Process exited with code 137.
Output for 5.6.1
cufa with 0 args took 0.35373306274414 switch with 0 args took 0.20393300056458 unpack with 0 args took 0.096698045730591 cufa with 1 args took 0.41509389877319 switch with 1 args took 0.24615788459778 unpack with 1 args took 0.11630892753601 cufa with 2 args took 0.45357298851013
Process exited with code 137.
Output for 5.6.0
cufa with 0 args took 0.37218999862671 switch with 0 args took 0.20734095573425 unpack with 0 args took 0.092950105667114 cufa with 1 args took 0.42266798019409 switch with 1 args took 0.23573708534241 unpack with 1 args took 0.11593699455261 cufa with 2 args took 0.44249296188354
Process exited with code 137.
Output for 5.5.0 - 5.5.38
Parse error: syntax error, unexpected '.' in /in/boXdQ on line 37
Process exited with code 255.
Output for 5.4.0 - 5.4.45
Parse error: syntax error, unexpected '.', expecting ')' in /in/boXdQ on line 37
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/boXdQ on line 6
Process exited with code 255.

preferences:
217.26 ms | 401 KiB | 328 Q