3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (function_exists("date_default_timezone_set")) { date_default_timezone_set("UTC"); } function simple() { $a = 0; for ($i = 0; $i < 1000000; $i++) $a++; $thisisanotherlongname = 0; for ($thisisalongname = 0; $thisisalongname < 1000000; $thisisalongname++) $thisisanotherlongname++; } /****/ function simplecall() { for ($i = 0; $i < 1000000; $i++) strlen("hallo"); } /****/ function hallo($a) { } function simpleucall() { for ($i = 0; $i < 1000000; $i++) hallo("hallo"); } /****/ function simpleudcall() { for ($i = 0; $i < 1000000; $i++) hallo2("hallo"); } function hallo2($a) { } /****/ function mandel() { $w1=50; $h1=150; $recen=-.45; $imcen=0.0; $r=0.7; $s=0; $rec=0; $imc=0; $re=0; $im=0; $re2=0; $im2=0; $x=0; $y=0; $w2=0; $h2=0; $color=0; $s=2*$r/$w1; $w2=40; $h2=12; for ($y=0 ; $y<=$w1; $y=$y+1) { $imc=$s*($y-$h2)+$imcen; for ($x=0 ; $x<=$h1; $x=$x+1) { $rec=$s*($x-$w2)+$recen; $re=$rec; $im=$imc; $color=1000; $re2=$re*$re; $im2=$im*$im; while( ((($re2+$im2)<1000000) && $color>0)) { $im=$re*$im*2+$imc; $re=$re2-$im2+$rec; $re2=$re*$re; $im2=$im*$im; $color=$color-1; } if ( $color==0 ) { print "_"; } else { print "#"; } } print "<br>"; flush(); } } /****/ function mandel2() { $b = " .:,;!/>)|&IH%*#"; //float r, i, z, Z, t, c, C; for ($y=30; printf("\n"), $C = $y*0.1 - 1.5, $y--;){ for ($x=0; $c = $x*0.04 - 2, $z=0, $Z=0, $x++ < 75;){ for ($r=$c, $i=$C, $k=0; $t = $z*$z - $Z*$Z + $r, $Z = 2*$z*$Z + $i, $z=$t, $k<5000; $k++) if ($z*$z + $Z*$Z > 500000) break; echo $b[$k%16]; } } } /****/ function Ack($m, $n){ if($m == 0) return $n+1; if($n == 0) return Ack($m-1, 1); return Ack($m - 1, Ack($m, ($n - 1))); } function ackermann($n) { $r = Ack(3,$n); print "Ack(3,$n): $r\n"; } /****/ function ary($n) { for ($i=0; $i<$n; $i++) { $X[$i] = $i; } for ($i=$n-1; $i>=0; $i--) { $Y[$i] = $X[$i]; } $last = $n-1; print "$Y[$last]\n"; } /****/ function ary2($n) { for ($i=0; $i<$n;) { $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; } for ($i=$n-1; $i>=0;) { $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; } $last = $n-1; print "$Y[$last]\n"; } /****/ function ary3($n) { for ($i=0; $i<$n; $i++) { $X[$i] = $i + 1; $Y[$i] = 0; } for ($k=0; $k<1000; $k++) { for ($i=$n-1; $i>=0; $i--) { $Y[$i] += $X[$i]; } } $last = $n-1; print "$Y[0] $Y[$last]\n"; } /****/ function fibo_r($n){ return(($n < 2) ? 1 : fibo_r($n - 2) + fibo_r($n - 1)); } function fibo($n) { $r = fibo_r($n); print "$r\n"; } /****/ function hash1($n) { for ($i = 1; $i <= $n; $i++) { $X[dechex($i)] = $i; } $c = 0; for ($i = $n; $i > 0; $i--) { if ($X[dechex($i)]) { $c++; } } print "$c\n"; } /****/ function hash2($n) { for ($i = 0; $i < $n; $i++) { $hash1["foo_$i"] = $i; $hash2["foo_$i"] = 0; } for ($i = $n; $i > 0; $i--) { foreach($hash1 as $key => $value) $hash2[$key] += $value; } $first = "foo_0"; $last = "foo_".($n-1); print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n"; } /****/ function gen_random ($n) { global $LAST; return( ($n * ($LAST = ($LAST * IA + IC) % IM)) / IM ); } function heapsort_r($n, &$ra) { $l = ($n >> 1) + 1; $ir = $n; while (1) { if ($l > 1) { $rra = $ra[--$l]; } else { $rra = $ra[$ir]; $ra[$ir] = $ra[1]; if (--$ir == 1) { $ra[1] = $rra; return; } } $i = $l; $j = $l << 1; while ($j <= $ir) { if (($j < $ir) && ($ra[$j] < $ra[$j+1])) { $j++; } if ($rra < $ra[$j]) { $ra[$i] = $ra[$j]; $j += ($i = $j); } else { $j = $ir + 1; } } $ra[$i] = $rra; } } function heapsort($N) { global $LAST; define("IM", 139968); define("IA", 3877); define("IC", 29573); $LAST = 42; for ($i=1; $i<=$N; $i++) { $ary[$i] = gen_random(1); } heapsort_r($N, $ary); printf("%.10f\n", $ary[$N]); } /****/ function mkmatrix ($rows, $cols) { $count = 1; $mx = array(); for ($i=0; $i<$rows; $i++) { for ($j=0; $j<$cols; $j++) { $mx[$i][$j] = $count++; } } return($mx); } function mmult ($rows, $cols, $m1, $m2) { $m3 = array(); for ($i=0; $i<$rows; $i++) { for ($j=0; $j<$cols; $j++) { $x = 0; for ($k=0; $k<$cols; $k++) { $x += $m1[$i][$k] * $m2[$k][$j]; } $m3[$i][$j] = $x; } } return($m3); } function matrix($n) { $SIZE = 30; $m1 = mkmatrix($SIZE, $SIZE); $m2 = mkmatrix($SIZE, $SIZE); while ($n--) { $mm = mmult($SIZE, $SIZE, $m1, $m2); } print "{$mm[0][0]} {$mm[2][3]} {$mm[3][2]} {$mm[4][4]}\n"; } /****/ function nestedloop($n) { $x = 0; for ($a=0; $a<$n; $a++) for ($b=0; $b<$n; $b++) for ($c=0; $c<$n; $c++) for ($d=0; $d<$n; $d++) for ($e=0; $e<$n; $e++) for ($f=0; $f<$n; $f++) $x++; print "$x\n"; } /****/ function sieve($n) { $count = 0; while ($n-- > 0) { $count = 0; $flags = range (0,8192); for ($i=2; $i<8193; $i++) { if ($flags[$i] > 0) { for ($k=$i+$i; $k <= 8192; $k+=$i) { $flags[$k] = 0; } $count++; } } } print "Count: $count\n"; } /****/ function strcat($n) { $str = ""; while ($n-- > 0) { $str .= "hello\n"; } $len = strlen($str); print "$len\n"; } /*****/ function getmicrotime() { $t = gettimeofday(); return ($t['sec'] + $t['usec'] / 1000000); } function start_test() { ob_start(); return getmicrotime(); } function end_test($start, $name) { global $total; $end = getmicrotime(); ob_end_clean(); $total += $end-$start; $num = number_format($end-$start,3); $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); echo $name.$pad.$num."\n"; ob_start(); return getmicrotime(); } function total() { global $total; $pad = str_repeat("-", 24); echo $pad."\n"; $num = number_format($total,3); $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); echo "Total".$pad.$num."\n"; } $t0 = $t = start_test(); simple(); $t = end_test($t, "simple"); simplecall(); $t = end_test($t, "simplecall"); simpleucall(); $t = end_test($t, "simpleucall"); simpleudcall(); $t = end_test($t, "simpleudcall"); mandel(); $t = end_test($t, "mandel"); mandel2(); $t = end_test($t, "mandel2"); ackermann(7); $t = end_test($t, "ackermann(7)"); ary(50000); $t = end_test($t, "ary(50000)"); ary2(50000); $t = end_test($t, "ary2(50000)"); ary3(2000); $t = end_test($t, "ary3(2000)"); fibo(30); $t = end_test($t, "fibo(30)"); hash1(50000); $t = end_test($t, "hash1(50000)"); hash2(500); $t = end_test($t, "hash2(500)"); heapsort(20000); $t = end_test($t, "heapsort(20000)"); matrix(20); $t = end_test($t, "matrix(20)"); nestedloop(12); $t = end_test($t, "nestedloop(12)"); sieve(30); $t = end_test($t, "sieve(30)"); strcat(200000); $t = end_test($t, "strcat(200000)"); total($t0, "Total"); ?>
Output for 8.3.6
simple 0.014 simplecall 0.005 simpleucall 0.016 simpleudcall 0.017 mandel 0.138 mandel2 0.139 ackermann(7) 0.022 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.036 fibo(30) 0.065 hash1(50000) 0.007 hash2(500) 0.007 heapsort(20000) 0.026 matrix(20) 0.024 nestedloop(12) 0.049 sieve(30) 0.012 strcat(200000) 0.004 ------------------------ Total 0.587
Output for 8.3.5
simple 0.020 simplecall 0.007 simpleucall 0.022 simpleudcall 0.032 mandel 0.122 mandel2 0.140 ackermann(7) 0.023 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.038 fibo(30) 0.066 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.027 matrix(20) 0.023 nestedloop(12) 0.052 sieve(30) 0.013 strcat(200000) 0.005 ------------------------ Total 0.616
Output for 8.3.4
simple 0.013 simplecall 0.005 simpleucall 0.016 simpleudcall 0.017 mandel 0.122 mandel2 0.125 ackermann(7) 0.022 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.040 fibo(30) 0.074 hash1(50000) 0.009 hash2(500) 0.008 heapsort(20000) 0.026 matrix(20) 0.021 nestedloop(12) 0.023 sieve(30) 0.014 strcat(200000) 0.005 ------------------------ Total 0.551
Output for 8.3.3
simple 0.013 simplecall 0.005 simpleucall 0.023 simpleudcall 0.016 mandel 0.132 mandel2 0.139 ackermann(7) 0.021 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.036 fibo(30) 0.068 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.026 matrix(20) 0.021 nestedloop(12) 0.032 sieve(30) 0.013 strcat(200000) 0.005 ------------------------ Total 0.576
Output for 8.3.2
simple 0.007 simplecall 0.003 simpleucall 0.009 simpleudcall 0.009 mandel 0.073 mandel2 0.074 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.021 fibo(30) 0.036 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.012 nestedloop(12) 0.014 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.307
Output for 8.3.1
simple 0.007 simplecall 0.003 simpleucall 0.008 simpleudcall 0.009 mandel 0.070 mandel2 0.075 ackermann(7) 0.011 ary(50000) 0.002 ary2(50000) 0.001 ary3(2000) 0.019 fibo(30) 0.036 hash1(50000) 0.003 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.011 nestedloop(12) 0.017 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.301
Output for 8.3.0
simple 0.007 simplecall 0.003 simpleucall 0.010 simpleudcall 0.009 mandel 0.066 mandel2 0.066 ackermann(7) 0.011 ary(50000) 0.002 ary2(50000) 0.001 ary3(2000) 0.022 fibo(30) 0.037 hash1(50000) 0.003 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.012 nestedloop(12) 0.013 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.288
Output for 8.2.18
simple 0.016 simplecall 0.006 simpleucall 0.019 simpleudcall 0.018 mandel 0.125 mandel2 0.139 ackermann(7) 0.021 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.037 fibo(30) 0.066 hash1(50000) 0.009 hash2(500) 0.007 heapsort(20000) 0.026 matrix(20) 0.023 nestedloop(12) 0.028 sieve(30) 0.012 strcat(200000) 0.004 ------------------------ Total 0.568
Output for 8.2.17
simple 0.013 simplecall 0.005 simpleucall 0.016 simpleudcall 0.016 mandel 0.134 mandel2 0.138 ackermann(7) 0.022 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.036 fibo(30) 0.068 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.039 matrix(20) 0.023 nestedloop(12) 0.029 sieve(30) 0.013 strcat(200000) 0.005 ------------------------ Total 0.585
Output for 8.2.16
simple 0.013 simplecall 0.006 simpleucall 0.021 simpleudcall 0.016 mandel 0.122 mandel2 0.128 ackermann(7) 0.021 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.039 fibo(30) 0.068 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.026 matrix(20) 0.019 nestedloop(12) 0.023 sieve(30) 0.012 strcat(200000) 0.005 ------------------------ Total 0.546
Output for 8.2.15
simple 0.018 simplecall 0.003 simpleucall 0.008 simpleudcall 0.010 mandel 0.070 mandel2 0.074 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.022 fibo(30) 0.037 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.012 nestedloop(12) 0.028 sieve(30) 0.009 strcat(200000) 0.003 ------------------------ Total 0.335
Output for 8.2.14
simple 0.018 simplecall 0.003 simpleucall 0.011 simpleudcall 0.009 mandel 0.068 mandel2 0.069 ackermann(7) 0.011 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.020 fibo(30) 0.036 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.012 nestedloop(12) 0.029 sieve(30) 0.007 strcat(200000) 0.002 ------------------------ Total 0.325
Output for 8.2.13
simple 0.018 simplecall 0.003 simpleucall 0.010 simpleudcall 0.009 mandel 0.072 mandel2 0.078 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.020 fibo(30) 0.036 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.012 nestedloop(12) 0.028 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.337
Output for 8.2.12
simple 0.017 simplecall 0.003 simpleucall 0.012 simpleudcall 0.010 mandel 0.071 mandel2 0.073 ackermann(7) 0.011 ary(50000) 0.002 ary2(50000) 0.001 ary3(2000) 0.020 fibo(30) 0.037 hash1(50000) 0.003 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.013 nestedloop(12) 0.029 sieve(30) 0.007 strcat(200000) 0.002 ------------------------ Total 0.330
Output for 8.2.11
simple 0.015 simplecall 0.005 simpleucall 0.017 simpleudcall 0.017 mandel 0.114 mandel2 0.105 ackermann(7) 0.021 ary(50000) 0.005 ary2(50000) 0.004 ary3(2000) 0.038 fibo(30) 0.066 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.033 nestedloop(12) 0.025 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.520
Output for 8.2.10
simple 0.008 simplecall 0.003 simpleucall 0.011 simpleudcall 0.014 mandel 0.089 mandel2 0.079 ackermann(7) 0.015 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.057 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.392
Output for 8.2.9
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.090 mandel2 0.094 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.400
Output for 8.2.8
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.015 mandel 0.092 mandel2 0.089 ackermann(7) 0.016 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.031 fibo(30) 0.060 hash1(50000) 0.007 hash2(500) 0.010 heapsort(20000) 0.021 matrix(20) 0.018 nestedloop(12) 0.016 sieve(30) 0.012 strcat(200000) 0.004 ------------------------ Total 0.423
Output for 8.2.7
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.098 mandel2 0.087 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.016 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.403
Output for 8.2.6
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.093 mandel2 0.084 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.396
Output for 8.2.5
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.092 mandel2 0.079 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.029 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.390
Output for 8.2.4
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.085 mandel2 0.078 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.005 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.381
Output for 8.2.3
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.078 mandel2 0.070 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.018 matrix(20) 0.016 nestedloop(12) 0.016 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.363
Output for 8.2.2
simple 0.008 simplecall 0.003 simpleucall 0.011 simpleudcall 0.014 mandel 0.091 mandel2 0.081 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.389
Output for 8.2.1
simple 0.008 simplecall 0.003 simpleucall 0.011 simpleudcall 0.014 mandel 0.087 mandel2 0.081 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.036 fibo(30) 0.057 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.395
Output for 8.2.0
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.088 mandel2 0.079 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.030 fibo(30) 0.059 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.391
Output for 8.1.28
simple 0.013 simplecall 0.005 simpleucall 0.019 simpleudcall 0.018 mandel 0.144 mandel2 0.129 ackermann(7) 0.022 ary(50000) 0.006 ary2(50000) 0.003 ary3(2000) 0.037 fibo(30) 0.067 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.027 matrix(20) 0.020 nestedloop(12) 0.025 sieve(30) 0.012 strcat(200000) 0.005 ------------------------ Total 0.564
Output for 8.1.27
simple 0.007 simplecall 0.003 simpleucall 0.009 simpleudcall 0.009 mandel 0.078 mandel2 0.083 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.020 fibo(30) 0.039 hash1(50000) 0.004 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.013 nestedloop(12) 0.028 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.342
Output for 8.1.26
simple 0.007 simplecall 0.003 simpleucall 0.009 simpleudcall 0.009 mandel 0.074 mandel2 0.080 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.021 fibo(30) 0.036 hash1(50000) 0.004 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.012 nestedloop(12) 0.027 sieve(30) 0.007 strcat(200000) 0.002 ------------------------ Total 0.328
Output for 8.1.25
simple 0.007 simplecall 0.003 simpleucall 0.009 simpleudcall 0.009 mandel 0.074 mandel2 0.079 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.020 fibo(30) 0.036 hash1(50000) 0.004 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.012 nestedloop(12) 0.017 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.318
Output for 8.1.24
simple 0.015 simplecall 0.005 simpleucall 0.018 simpleudcall 0.017 mandel 0.113 mandel2 0.106 ackermann(7) 0.020 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.040 fibo(30) 0.067 hash1(50000) 0.006 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.032 nestedloop(12) 0.036 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.530
Output for 8.1.23
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.090 mandel2 0.085 ackermann(7) 0.015 ary(50000) 0.005 ary2(50000) 0.004 ary3(2000) 0.028 fibo(30) 0.053 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.392
Output for 8.1.22
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.099 mandel2 0.086 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.005 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.018 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.406
Output for 8.1.21
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.096 mandel2 0.087 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.023 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.011 strcat(200000) 0.003 ------------------------ Total 0.401
Output for 8.1.20
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.093 mandel2 0.080 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.007 ------------------------ Total 0.396
Output for 8.1.19
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.094 mandel2 0.083 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.009 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.395
Output for 8.1.18
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.100 mandel2 0.091 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.407
Output for 8.1.17
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.087 mandel2 0.080 ackermann(7) 0.014 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.053 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.019 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.379
Output for 8.1.16
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.082 mandel2 0.072 ackermann(7) 0.014 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.053 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.019 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.366
Output for 8.1.15
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.099 mandel2 0.096 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.412
Output for 8.1.14
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.101 mandel2 0.081 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.401
Output for 8.1.13
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.084 mandel2 0.086 ackermann(7) 0.014 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.029 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.019 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.384
Output for 8.1.12
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.089 mandel2 0.075 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.053 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.022 matrix(20) 0.016 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.380
Output for 8.1.11
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.095 mandel2 0.097 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.408
Output for 8.1.10
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.100 mandel2 0.092 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.409
Output for 8.1.9
simple 0.008 simplecall 0.004 simpleucall 0.014 simpleudcall 0.017 mandel 0.105 mandel2 0.093 ackermann(7) 0.018 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.033 fibo(30) 0.064 hash1(50000) 0.009 hash2(500) 0.008 heapsort(20000) 0.025 matrix(20) 0.020 nestedloop(12) 0.017 sieve(30) 0.012 strcat(200000) 0.005 ------------------------ Total 0.458
Output for 8.1.8
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.084 mandel2 0.081 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.020 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.379
Output for 8.1.7
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.089 mandel2 0.082 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.389
Output for 8.1.6
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.071 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.030 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.519
Output for 8.1.5
simple 0.017 simplecall 0.006 simpleucall 0.016 simpleudcall 0.018 mandel 0.107 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.041 fibo(30) 0.071 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.523
Output for 8.1.4
simple 0.016 simplecall 0.005 simpleucall 0.016 simpleudcall 0.018 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.518
Output for 8.1.3
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.519
Output for 8.1.2
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.107 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.520
Output for 8.1.1
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.109 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.039 fibo(30) 0.072 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.030 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.522
Output for 8.1.0
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.068 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.517
Output for 8.0.30
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.084 mandel2 0.076 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.029 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.019 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.374
Output for 8.0.29
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.092 mandel2 0.093 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.401
Output for 8.0.28
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.091 mandel2 0.092 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.400
Output for 8.0.27
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.093 mandel2 0.091 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.056 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.020 matrix(20) 0.017 nestedloop(12) 0.016 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.405
Output for 8.0.26
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.094 mandel2 0.085 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.395
Output for 8.0.25
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.087 mandel2 0.080 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.386
Output for 8.0.24
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.091 mandel2 0.085 ackermann(7) 0.014 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.393
Output for 8.0.23
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.090 mandel2 0.081 ackermann(7) 0.014 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.056 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.022 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.006 ------------------------ Total 0.391
Output for 8.0.22
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.093 mandel2 0.091 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.402
Output for 8.0.21
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.083 mandel2 0.082 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.379
Output for 8.0.20
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.091 mandel2 0.083 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.029 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.021 nestedloop(12) 0.043 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.426
Output for 8.0.19
simple 0.016 simplecall 0.005 simpleucall 0.017 simpleudcall 0.017 mandel 0.107 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.071 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.521
Output for 8.0.18
simple 0.016 simplecall 0.005 simpleucall 0.016 simpleudcall 0.018 mandel 0.107 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.006 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.520
Output for 8.0.17
simple 0.016 simplecall 0.005 simpleucall 0.016 simpleudcall 0.017 mandel 0.106 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.519
Output for 8.0.16
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.107 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.071 hash1(50000) 0.006 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.521
Output for 8.0.15
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.071 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.519
Output for 8.0.14
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.071 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.518
Output for 8.0.13
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.106 ackermann(7) 0.020 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.041 fibo(30) 0.071 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.025 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.527
Output for 8.0.12
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.106 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.069 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.517
Output for 8.0.11
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.069 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.517
Output for 8.0.10
simple 0.016 simplecall 0.006 simpleucall 0.017 simpleudcall 0.017 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.006 hash2(500) 0.010 heapsort(20000) 0.024 matrix(20) 0.033 nestedloop(12) 0.028 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.522
Output for 8.0.9
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.040 fibo(30) 0.070 hash1(50000) 0.006 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.518
Output for 8.0.8
simple 0.013 simplecall 0.005 simpleucall 0.023 simpleudcall 0.025 mandel 0.147 mandel2 0.270 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.048 fibo(30) 0.090 hash1(50000) 0.010 hash2(500) 0.010 heapsort(20000) 0.030 matrix(20) 0.027 nestedloop(12) 0.021 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.781
Output for 8.0.7
simple 0.016 simplecall 0.005 simpleucall 0.045 simpleudcall 0.030 mandel 0.181 mandel2 0.247 ackermann(7) 0.036 ary(50000) 0.008 ary2(50000) 0.007 ary3(2000) 0.053 fibo(30) 0.090 hash1(50000) 0.010 hash2(500) 0.010 heapsort(20000) 0.031 matrix(20) 0.026 nestedloop(12) 0.021 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.839
Output for 8.0.6
simple 0.012 simplecall 0.004 simpleucall 0.021 simpleudcall 0.025 mandel 0.148 mandel2 0.255 ackermann(7) 0.043 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.044 fibo(30) 0.089 hash1(50000) 0.010 hash2(500) 0.010 heapsort(20000) 0.030 matrix(20) 0.030 nestedloop(12) 0.022 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.776
Output for 8.0.5
simple 0.012 simplecall 0.004 simpleucall 0.021 simpleudcall 0.024 mandel 0.145 mandel2 0.223 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.045 fibo(30) 0.093 hash1(50000) 0.009 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.026 nestedloop(12) 0.022 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.725
Output for 8.0.3
simple 0.013 simplecall 0.007 simpleucall 0.027 simpleudcall 0.026 mandel 0.159 mandel2 0.228 ackermann(7) 0.024 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.045 fibo(30) 0.089 hash1(50000) 0.010 hash2(500) 0.010 heapsort(20000) 0.030 matrix(20) 0.025 nestedloop(12) 0.021 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.746
Output for 8.0.2
simple 0.012 simplecall 0.004 simpleucall 0.021 simpleudcall 0.024 mandel 0.140 mandel2 0.231 ackermann(7) 0.024 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.045 fibo(30) 0.089 hash1(50000) 0.009 hash2(500) 0.012 heapsort(20000) 0.031 matrix(20) 0.026 nestedloop(12) 0.021 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.722
Output for 8.0.1
simple 0.012 simplecall 0.004 simpleucall 0.021 simpleudcall 0.024 mandel 0.149 mandel2 0.247 ackermann(7) 0.024 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.048 fibo(30) 0.098 hash1(50000) 0.012 hash2(500) 0.014 heapsort(20000) 0.039 matrix(20) 0.057 nestedloop(12) 0.058 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.842
Output for 8.0.0
simple 0.013 simplecall 0.004 simpleucall 0.022 simpleudcall 0.068 mandel 0.179 mandel2 0.179 ackermann(7) 0.025 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.058 fibo(30) 0.095 hash1(50000) 0.010 hash2(500) 0.011 heapsort(20000) 0.032 matrix(20) 0.026 nestedloop(12) 0.040 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.800
Output for 7.4.33
simple 0.015 simplecall 0.004 simpleucall 0.014 simpleudcall 0.016 mandel 0.100 mandel2 0.095 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.034 fibo(30) 0.063 hash1(50000) 0.007 hash2(500) 0.007 heapsort(20000) 0.023 matrix(20) 0.019 nestedloop(12) 0.032 sieve(30) 0.011 strcat(200000) 0.003 ------------------------ Total 0.464
Output for 7.4.32
simple 0.013 simplecall 0.004 simpleucall 0.014 simpleudcall 0.016 mandel 0.097 mandel2 0.085 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.031 fibo(30) 0.055 hash1(50000) 0.007 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.020 nestedloop(12) 0.028 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.436
Output for 7.4.30
simple 0.015 simplecall 0.005 simpleucall 0.015 simpleudcall 0.017 mandel 0.096 mandel2 0.092 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.031 fibo(30) 0.056 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.018 nestedloop(12) 0.026 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.441
Output for 7.4.29
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.108 mandel2 0.109 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.044 fibo(30) 0.071 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.568
Output for 7.4.28
simple 0.026 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.109 mandel2 0.111 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.044 fibo(30) 0.071 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.573
Output for 7.4.27
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.108 mandel2 0.110 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.044 fibo(30) 0.071 hash1(50000) 0.008 hash2(500) 0.010 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.045 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.570
Output for 7.4.26
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.019 mandel 0.108 mandel2 0.111 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.044 fibo(30) 0.071 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.032 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.569
Output for 7.4.25
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.107 mandel2 0.111 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.044 fibo(30) 0.070 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.568
Output for 7.4.24
simple 0.026 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.107 mandel2 0.111 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.043 fibo(30) 0.071 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.568
Output for 7.4.23
simple 0.026 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.107 mandel2 0.110 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.043 fibo(30) 0.069 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.031 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.005 ------------------------ Total 0.563
Output for 7.4.22
simple 0.030 simplecall 0.010 simpleucall 0.031 simpleudcall 0.033 mandel 0.187 mandel2 0.275 ackermann(7) 0.031 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.065 fibo(30) 0.117 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.041 matrix(20) 0.047 nestedloop(12) 0.058 sieve(30) 0.023 strcat(200000) 0.008 ------------------------ Total 1.003
Output for 7.4.21
simple 0.033 simplecall 0.011 simpleucall 0.029 simpleudcall 0.037 mandel 0.161 mandel2 0.225 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.054 fibo(30) 0.095 hash1(50000) 0.018 hash2(500) 0.010 heapsort(20000) 0.035 matrix(20) 0.038 nestedloop(12) 0.047 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.856
Output for 7.4.20
simple 0.025 simplecall 0.008 simpleucall 0.027 simpleudcall 0.027 mandel 0.174 mandel2 0.218 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.090 hash1(50000) 0.014 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.041 nestedloop(12) 0.064 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.846
Output for 7.4.19
simple 0.026 simplecall 0.010 simpleucall 0.025 simpleudcall 0.027 mandel 0.198 mandel2 0.253 ackermann(7) 0.026 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.061 fibo(30) 0.116 hash1(50000) 0.017 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.039 nestedloop(12) 0.059 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.938
Output for 7.4.18
simple 0.041 simplecall 0.013 simpleucall 0.037 simpleudcall 0.036 mandel 0.187 mandel2 0.233 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.064 fibo(30) 0.116 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.038 nestedloop(12) 0.055 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.936
Output for 7.4.16
simple 0.026 simplecall 0.007 simpleucall 0.025 simpleudcall 0.027 mandel 0.156 mandel2 0.186 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.061 fibo(30) 0.091 hash1(50000) 0.014 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.062 nestedloop(12) 0.047 sieve(30) 0.022 strcat(200000) 0.006 ------------------------ Total 0.817
Output for 7.4.15
simple 0.026 simplecall 0.008 simpleucall 0.026 simpleudcall 0.027 mandel 0.163 mandel2 0.185 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.055 fibo(30) 0.091 hash1(50000) 0.016 hash2(500) 0.012 heapsort(20000) 0.036 matrix(20) 0.039 nestedloop(12) 0.048 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.793
Output for 7.4.14
simple 0.026 simplecall 0.008 simpleucall 0.025 simpleudcall 0.027 mandel 0.149 mandel2 0.244 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.053 fibo(30) 0.089 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.028 nestedloop(12) 0.046 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.812
Output for 7.4.13
simple 0.034 simplecall 0.008 simpleucall 0.025 simpleudcall 0.027 mandel 0.148 mandel2 0.244 ackermann(7) 0.035 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.077 fibo(30) 0.136 hash1(50000) 0.023 hash2(500) 0.012 heapsort(20000) 0.034 matrix(20) 0.058 nestedloop(12) 0.052 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.949
Output for 7.4.12
simple 0.037 simplecall 0.011 simpleucall 0.032 simpleudcall 0.040 mandel 0.188 mandel2 0.216 ackermann(7) 0.033 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.068 fibo(30) 0.098 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.029 nestedloop(12) 0.046 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.898
Output for 7.4.11
simple 0.047 simplecall 0.015 simpleucall 0.042 simpleudcall 0.035 mandel 0.156 mandel2 0.183 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.054 fibo(30) 0.111 hash1(50000) 0.022 hash2(500) 0.016 heapsort(20000) 0.050 matrix(20) 0.065 nestedloop(12) 0.082 sieve(30) 0.026 strcat(200000) 0.009 ------------------------ Total 0.950
Output for 7.4.10
simple 0.026 simplecall 0.008 simpleucall 0.026 simpleudcall 0.027 mandel 0.157 mandel2 0.213 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.052 fibo(30) 0.089 hash1(50000) 0.015 hash2(500) 0.010 heapsort(20000) 0.034 matrix(20) 0.031 nestedloop(12) 0.048 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.801
Output for 7.4.9
simple 0.026 simplecall 0.008 simpleucall 0.035 simpleudcall 0.035 mandel 0.156 mandel2 0.206 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.055 fibo(30) 0.101 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.043 matrix(20) 0.045 nestedloop(12) 0.048 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.844
Output for 7.4.8
simple 0.036 simplecall 0.009 simpleucall 0.028 simpleudcall 0.030 mandel 0.220 mandel2 0.215 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.055 fibo(30) 0.096 hash1(50000) 0.025 hash2(500) 0.016 heapsort(20000) 0.051 matrix(20) 0.057 nestedloop(12) 0.067 sieve(30) 0.026 strcat(200000) 0.009 ------------------------ Total 0.979
Output for 7.4.7
simple 0.036 simplecall 0.011 simpleucall 0.035 simpleudcall 0.040 mandel 0.200 mandel2 0.238 ackermann(7) 0.037 ary(50000) 0.012 ary2(50000) 0.008 ary3(2000) 0.079 fibo(30) 0.127 hash1(50000) 0.019 hash2(500) 0.010 heapsort(20000) 0.039 matrix(20) 0.063 nestedloop(12) 0.053 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 1.032
Output for 7.4.6
simple 0.026 simplecall 0.008 simpleucall 0.025 simpleudcall 0.028 mandel 0.202 mandel2 0.241 ackermann(7) 0.040 ary(50000) 0.013 ary2(50000) 0.011 ary3(2000) 0.087 fibo(30) 0.133 hash1(50000) 0.023 hash2(500) 0.015 heapsort(20000) 0.050 matrix(20) 0.039 nestedloop(12) 0.058 sieve(30) 0.022 strcat(200000) 0.009 ------------------------ Total 1.030
Output for 7.4.5
simple 0.058 simplecall 0.030 simpleucall 0.040 simpleudcall 0.030 mandel 0.194 mandel2 0.190 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.058 fibo(30) 0.102 hash1(50000) 0.015 hash2(500) 0.012 heapsort(20000) 0.035 matrix(20) 0.039 nestedloop(12) 0.064 sieve(30) 0.027 strcat(200000) 0.010 ------------------------ Total 0.940
Output for 7.4.4
simple 0.029 simplecall 0.011 simpleucall 0.034 simpleudcall 0.031 mandel 0.241 mandel2 0.187 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.054 fibo(30) 0.090 hash1(50000) 0.014 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.037 nestedloop(12) 0.052 sieve(30) 0.025 strcat(200000) 0.009 ------------------------ Total 0.894
Output for 7.4.3
simple 0.039 simplecall 0.012 simpleucall 0.040 simpleudcall 0.067 mandel 0.172 mandel2 0.199 ackermann(7) 0.026 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.055 fibo(30) 0.089 hash1(50000) 0.014 hash2(500) 0.010 heapsort(20000) 0.033 matrix(20) 0.028 nestedloop(12) 0.046 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.867
Output for 7.4.2
simple 0.026 simplecall 0.008 simpleucall 0.026 simpleudcall 0.034 mandel 0.194 mandel2 0.183 ackermann(7) 0.026 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.054 fibo(30) 0.090 hash1(50000) 0.015 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.047 nestedloop(12) 0.059 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.842
Output for 7.4.1
simple 0.026 simplecall 0.008 simpleucall 0.025 simpleudcall 0.027 mandel 0.154 mandel2 0.237 ackermann(7) 0.044 ary(50000) 0.021 ary2(50000) 0.006 ary3(2000) 0.056 fibo(30) 0.091 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.038 nestedloop(12) 0.048 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.864
Output for 7.4.0
simple 0.034 simplecall 0.011 simpleucall 0.034 simpleudcall 0.039 mandel 0.190 mandel2 0.212 ackermann(7) 0.024 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.056 fibo(30) 0.112 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.037 nestedloop(12) 0.057 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.904
Output for 7.3.33
simple 0.031 simplecall 0.011 simpleucall 0.028 simpleudcall 0.021 mandel 0.123 mandel2 0.135 ackermann(7) 0.026 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.058 fibo(30) 0.088 hash1(50000) 0.010 hash2(500) 0.011 heapsort(20000) 0.031 matrix(20) 0.031 nestedloop(12) 0.058 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.696
Output for 7.3.32
simple 0.027 simplecall 0.009 simpleucall 0.021 simpleudcall 0.020 mandel 0.108 mandel2 0.123 ackermann(7) 0.020 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.049 fibo(30) 0.074 hash1(50000) 0.009 hash2(500) 0.009 heapsort(20000) 0.025 matrix(20) 0.029 nestedloop(12) 0.048 sieve(30) 0.015 strcat(200000) 0.005 ------------------------ Total 0.598
Output for 7.3.31
simple 0.027 simplecall 0.009 simpleucall 0.020 simpleudcall 0.020 mandel 0.110 mandel2 0.126 ackermann(7) 0.020 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.047 fibo(30) 0.074 hash1(50000) 0.009 hash2(500) 0.009 heapsort(20000) 0.025 matrix(20) 0.029 nestedloop(12) 0.051 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.601
Output for 7.3.30
simple 0.029 simplecall 0.010 simpleucall 0.023 simpleudcall 0.024 mandel 0.113 mandel2 0.123 ackermann(7) 0.020 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.047 fibo(30) 0.073 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.029 nestedloop(12) 0.048 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.607
Output for 7.3.29
simple 0.071 simplecall 0.010 simpleucall 0.026 simpleudcall 0.034 mandel 0.230 mandel2 0.208 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.101 hash1(50000) 0.017 hash2(500) 0.012 heapsort(20000) 0.040 matrix(20) 0.051 nestedloop(12) 0.099 sieve(30) 0.029 strcat(200000) 0.006 ------------------------ Total 1.031
Output for 7.3.28
simple 0.092 simplecall 0.015 simpleucall 0.030 simpleudcall 0.030 mandel 0.298 mandel2 0.251 ackermann(7) 0.029 ary(50000) 0.015 ary2(50000) 0.008 ary3(2000) 0.060 fibo(30) 0.101 hash1(50000) 0.017 hash2(500) 0.012 heapsort(20000) 0.041 matrix(20) 0.030 nestedloop(12) 0.076 sieve(30) 0.030 strcat(200000) 0.010 ------------------------ Total 1.146
Output for 7.3.27
simple 0.085 simplecall 0.015 simpleucall 0.039 simpleudcall 0.028 mandel 0.210 mandel2 0.254 ackermann(7) 0.039 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.090 fibo(30) 0.116 hash1(50000) 0.014 hash2(500) 0.011 heapsort(20000) 0.029 matrix(20) 0.030 nestedloop(12) 0.081 sieve(30) 0.021 strcat(200000) 0.006 ------------------------ Total 1.086
Output for 7.3.26
simple 0.080 simplecall 0.014 simpleucall 0.029 simpleudcall 0.045 mandel 0.243 mandel2 0.272 ackermann(7) 0.033 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.076 fibo(30) 0.129 hash1(50000) 0.027 hash2(500) 0.016 heapsort(20000) 0.047 matrix(20) 0.046 nestedloop(12) 0.091 sieve(30) 0.031 strcat(200000) 0.007 ------------------------ Total 1.199
Output for 7.3.25
simple 0.037 simplecall 0.022 simpleucall 0.036 simpleudcall 0.030 mandel 0.233 mandel2 0.221 ackermann(7) 0.037 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.060 fibo(30) 0.098 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.030 nestedloop(12) 0.131 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.034
Output for 7.3.24
simple 0.080 simplecall 0.010 simpleucall 0.025 simpleudcall 0.028 mandel 0.242 mandel2 0.200 ackermann(7) 0.027 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.057 fibo(30) 0.097 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.032 matrix(20) 0.029 nestedloop(12) 0.065 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.959
Output for 7.3.23
simple 0.076 simplecall 0.017 simpleucall 0.033 simpleudcall 0.053 mandel 0.202 mandel2 0.212 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.095 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.030 nestedloop(12) 0.072 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.968
Output for 7.3.22
simple 0.132 simplecall 0.015 simpleucall 0.034 simpleudcall 0.033 mandel 0.259 mandel2 0.217 ackermann(7) 0.033 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.058 fibo(30) 0.098 hash1(50000) 0.022 hash2(500) 0.035 heapsort(20000) 0.045 matrix(20) 0.030 nestedloop(12) 0.068 sieve(30) 0.021 strcat(200000) 0.006 ------------------------ Total 1.119
Output for 7.3.21
simple 0.081 simplecall 0.013 simpleucall 0.026 simpleudcall 0.030 mandel 0.211 mandel2 0.241 ackermann(7) 0.031 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.059 fibo(30) 0.099 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.031 nestedloop(12) 0.090 sieve(30) 0.030 strcat(200000) 0.011 ------------------------ Total 1.026
Output for 7.3.20
simple 0.032 simplecall 0.011 simpleucall 0.026 simpleudcall 0.029 mandel 0.210 mandel2 0.260 ackermann(7) 0.028 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.064 fibo(30) 0.123 hash1(50000) 0.014 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.029 nestedloop(12) 0.118 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 1.025
Output for 7.3.19
simple 0.115 simplecall 0.010 simpleucall 0.025 simpleudcall 0.028 mandel 0.207 mandel2 0.223 ackermann(7) 0.027 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.095 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.064 matrix(20) 0.030 nestedloop(12) 0.066 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 1.011
Output for 7.3.18
simple 0.071 simplecall 0.013 simpleucall 0.025 simpleudcall 0.028 mandel 0.204 mandel2 0.215 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.132 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.032 matrix(20) 0.030 nestedloop(12) 0.067 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.964
Output for 7.3.17
simple 0.071 simplecall 0.010 simpleucall 0.026 simpleudcall 0.028 mandel 0.203 mandel2 0.211 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.084 fibo(30) 0.095 hash1(50000) 0.014 hash2(500) 0.011 heapsort(20000) 0.029 matrix(20) 0.029 nestedloop(12) 0.067 sieve(30) 0.020 strcat(200000) 0.007 ------------------------ Total 0.946
Output for 7.3.16
simple 0.070 simplecall 0.010 simpleucall 0.025 simpleudcall 0.029 mandel 0.205 mandel2 0.215 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.076 fibo(30) 0.103 hash1(50000) 0.016 hash2(500) 0.015 heapsort(20000) 0.051 matrix(20) 0.045 nestedloop(12) 0.095 sieve(30) 0.033 strcat(200000) 0.013 ------------------------ Total 1.042
Output for 7.3.15
simple 0.090 simplecall 0.016 simpleucall 0.040 simpleudcall 0.044 mandel 0.313 mandel2 0.213 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.059 fibo(30) 0.116 hash1(50000) 0.021 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.030 nestedloop(12) 0.066 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 1.115
Output for 7.3.14
simple 0.080 simplecall 0.010 simpleucall 0.027 simpleudcall 0.041 mandel 0.210 mandel2 0.303 ackermann(7) 0.027 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.059 fibo(30) 0.098 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.044 nestedloop(12) 0.143 sieve(30) 0.022 strcat(200000) 0.006 ------------------------ Total 1.146
Output for 7.3.13
simple 0.040 simplecall 0.011 simpleucall 0.029 simpleudcall 0.030 mandel 0.222 mandel2 0.219 ackermann(7) 0.027 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.096 hash1(50000) 0.015 hash2(500) 0.033 heapsort(20000) 0.058 matrix(20) 0.046 nestedloop(12) 0.077 sieve(30) 0.022 strcat(200000) 0.006 ------------------------ Total 1.000
Output for 7.3.12
simple 0.072 simplecall 0.010 simpleucall 0.026 simpleudcall 0.028 mandel 0.231 mandel2 0.221 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.056 fibo(30) 0.105 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.031 matrix(20) 0.033 nestedloop(12) 0.066 sieve(30) 0.021 strcat(200000) 0.006 ------------------------ Total 0.973
Output for 7.3.11
simple 0.032 simplecall 0.010 simpleucall 0.026 simpleudcall 0.028 mandel 0.228 mandel2 0.234 ackermann(7) 0.027 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.096 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.031 matrix(20) 0.030 nestedloop(12) 0.066 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.929
Output for 7.3.10
simple 0.073 simplecall 0.012 simpleucall 0.025 simpleudcall 0.029 mandel 0.205 mandel2 0.277 ackermann(7) 0.045 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.057 fibo(30) 0.095 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.029 nestedloop(12) 0.090 sieve(30) 0.022 strcat(200000) 0.006 ------------------------ Total 1.037
Output for 7.3.9
simple 0.076 simplecall 0.010 simpleucall 0.026 simpleudcall 0.029 mandel 0.217 mandel2 0.220 ackermann(7) 0.027 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.083 fibo(30) 0.117 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.031 matrix(20) 0.030 nestedloop(12) 0.067 sieve(30) 0.020 strcat(200000) 0.007 ------------------------ Total 0.997
Output for 7.3.8
simple 0.089 simplecall 0.016 simpleucall 0.038 simpleudcall 0.044 mandel 0.271 mandel2 0.278 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.060 fibo(30) 0.105 hash1(50000) 0.016 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.033 nestedloop(12) 0.070 sieve(30) 0.021 strcat(200000) 0.007 ------------------------ Total 1.134
Output for 7.3.7
simple 0.033 simplecall 0.011 simpleucall 0.028 simpleudcall 0.029 mandel 0.264 mandel2 0.247 ackermann(7) 0.027 ary(50000) 0.009 ary2(50000) 0.007 ary3(2000) 0.061 fibo(30) 0.098 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.031 nestedloop(12) 0.065 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.994
Output for 7.3.6
simple 0.033 simplecall 0.010 simpleucall 0.026 simpleudcall 0.028 mandel 0.233 mandel2 0.228 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.059 fibo(30) 0.098 hash1(50000) 0.015 hash2(500) 0.012 heapsort(20000) 0.035 matrix(20) 0.030 nestedloop(12) 0.071 sieve(30) 0.030 strcat(200000) 0.011 ------------------------ Total 0.963
Output for 7.3.5
simple 0.075 simplecall 0.012 simpleucall 0.028 simpleudcall 0.030 mandel 0.261 mandel2 0.236 ackermann(7) 0.028 ary(50000) 0.010 ary2(50000) 0.008 ary3(2000) 0.094 fibo(30) 0.209 hash1(50000) 0.023 hash2(500) 0.017 heapsort(20000) 0.043 matrix(20) 0.041 nestedloop(12) 0.093 sieve(30) 0.036 strcat(200000) 0.012 ------------------------ Total 1.256
Output for 7.3.4
simple 0.034 simplecall 0.011 simpleucall 0.029 simpleudcall 0.041 mandel 0.233 mandel2 0.302 ackermann(7) 0.040 ary(50000) 0.012 ary2(50000) 0.009 ary3(2000) 0.065 fibo(30) 0.122 hash1(50000) 0.028 hash2(500) 0.015 heapsort(20000) 0.055 matrix(20) 0.048 nestedloop(12) 0.137 sieve(30) 0.059 strcat(200000) 0.017 ------------------------ Total 1.256
Output for 7.3.3
simple 0.066 simplecall 0.018 simpleucall 0.056 simpleudcall 0.057 mandel 0.271 mandel2 0.256 ackermann(7) 0.029 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.066 fibo(30) 0.109 hash1(50000) 0.015 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.087 nestedloop(12) 0.109 sieve(30) 0.047 strcat(200000) 0.007 ------------------------ Total 1.253
Output for 7.3.2
simple 0.062 simplecall 0.018 simpleucall 0.061 simpleudcall 0.057 mandel 0.339 mandel2 0.375 ackermann(7) 0.029 ary(50000) 0.009 ary2(50000) 0.007 ary3(2000) 0.094 fibo(30) 0.142 hash1(50000) 0.015 hash2(500) 0.024 heapsort(20000) 0.036 matrix(20) 0.031 nestedloop(12) 0.068 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 1.393
Output for 7.3.1
simple 0.033 simplecall 0.015 simpleucall 0.038 simpleudcall 0.032 mandel 0.296 mandel2 0.269 ackermann(7) 0.029 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.061 fibo(30) 0.099 hash1(50000) 0.024 hash2(500) 0.025 heapsort(20000) 0.068 matrix(20) 0.084 nestedloop(12) 0.142 sieve(30) 0.023 strcat(200000) 0.011 ------------------------ Total 1.266
Output for 7.3.0
simple 0.046 simplecall 0.016 simpleucall 0.034 simpleudcall 0.029 mandel 0.203 mandel2 0.217 ackermann(7) 0.027 ary(50000) 0.009 ary2(50000) 0.008 ary3(2000) 0.057 fibo(30) 0.098 hash1(50000) 0.026 hash2(500) 0.014 heapsort(20000) 0.029 matrix(20) 0.029 nestedloop(12) 0.066 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.931
Output for 7.2.34
simple 0.078 simplecall 0.012 simpleucall 0.032 simpleudcall 0.048 mandel 0.182 mandel2 0.260 ackermann(7) 0.029 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.070 fibo(30) 0.111 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.032 matrix(20) 0.032 nestedloop(12) 0.121 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.078
Output for 7.2.33
simple 0.071 simplecall 0.011 simpleucall 0.030 simpleudcall 0.035 mandel 0.169 mandel2 0.174 ackermann(7) 0.031 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.069 fibo(30) 0.131 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.031 matrix(20) 0.040 nestedloop(12) 0.130 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 0.995
Output for 7.2.32
simple 0.107 simplecall 0.011 simpleucall 0.033 simpleudcall 0.034 mandel 0.199 mandel2 0.178 ackermann(7) 0.037 ary(50000) 0.012 ary2(50000) 0.009 ary3(2000) 0.091 fibo(30) 0.115 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.034 matrix(20) 0.031 nestedloop(12) 0.075 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.027
Output for 7.2.31
simple 0.076 simplecall 0.017 simpleucall 0.050 simpleudcall 0.036 mandel 0.170 mandel2 0.196 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.066 fibo(30) 0.154 hash1(50000) 0.022 hash2(500) 0.014 heapsort(20000) 0.042 matrix(20) 0.032 nestedloop(12) 0.155 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.103
Output for 7.2.30
simple 0.077 simplecall 0.011 simpleucall 0.032 simpleudcall 0.033 mandel 0.160 mandel2 0.170 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.066 fibo(30) 0.105 hash1(50000) 0.015 hash2(500) 0.014 heapsort(20000) 0.059 matrix(20) 0.045 nestedloop(12) 0.125 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.981
Output for 7.2.29
simple 0.074 simplecall 0.012 simpleucall 0.031 simpleudcall 0.032 mandel 0.168 mandel2 0.229 ackermann(7) 0.046 ary(50000) 0.042 ary2(50000) 0.017 ary3(2000) 0.069 fibo(30) 0.115 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.039 matrix(20) 0.034 nestedloop(12) 0.073 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.040
Output for 7.2.28
simple 0.089 simplecall 0.017 simpleucall 0.062 simpleudcall 0.056 mandel 0.282 mandel2 0.175 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.079 fibo(30) 0.119 hash1(50000) 0.016 hash2(500) 0.019 heapsort(20000) 0.038 matrix(20) 0.032 nestedloop(12) 0.074 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.133
Output for 7.2.27
simple 0.076 simplecall 0.011 simpleucall 0.031 simpleudcall 0.038 mandel 0.204 mandel2 0.200 ackermann(7) 0.031 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.087 fibo(30) 0.125 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.034 matrix(20) 0.032 nestedloop(12) 0.125 sieve(30) 0.031 strcat(200000) 0.008 ------------------------ Total 1.075
Output for 7.2.26
simple 0.072 simplecall 0.011 simpleucall 0.030 simpleudcall 0.034 mandel 0.218 mandel2 0.177 ackermann(7) 0.029 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.067 fibo(30) 0.109 hash1(50000) 0.016 hash2(500) 0.014 heapsort(20000) 0.033 matrix(20) 0.032 nestedloop(12) 0.123 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.012
Output for 7.2.25
simple 0.083 simplecall 0.015 simpleucall 0.042 simpleudcall 0.057 mandel 0.187 mandel2 0.176 ackermann(7) 0.029 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.066 fibo(30) 0.108 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.033 matrix(20) 0.033 nestedloop(12) 0.071 sieve(30) 0.024 strcat(200000) 0.006 ------------------------ Total 0.973
Output for 7.2.24
simple 0.072 simplecall 0.011 simpleucall 0.031 simpleudcall 0.032 mandel 0.163 mandel2 0.199 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.066 fibo(30) 0.109 hash1(50000) 0.027 hash2(500) 0.025 heapsort(20000) 0.038 matrix(20) 0.033 nestedloop(12) 0.083 sieve(30) 0.024 strcat(200000) 0.008 ------------------------ Total 0.963
Output for 7.2.23
simple 0.077 simplecall 0.011 simpleucall 0.030 simpleudcall 0.033 mandel 0.173 mandel2 0.180 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.099 fibo(30) 0.155 hash1(50000) 0.025 hash2(500) 0.018 heapsort(20000) 0.052 matrix(20) 0.048 nestedloop(12) 0.094 sieve(30) 0.035 strcat(200000) 0.011 ------------------------ Total 1.086
Output for 7.2.22
simple 0.072 simplecall 0.011 simpleucall 0.030 simpleudcall 0.035 mandel 0.173 mandel2 0.188 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.070 fibo(30) 0.112 hash1(50000) 0.026 hash2(500) 0.019 heapsort(20000) 0.055 matrix(20) 0.052 nestedloop(12) 0.124 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.038
Output for 7.2.21
simple 0.072 simplecall 0.011 simpleucall 0.029 simpleudcall 0.032 mandel 0.161 mandel2 0.172 ackermann(7) 0.029 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.066 fibo(30) 0.103 hash1(50000) 0.015 hash2(500) 0.012 heapsort(20000) 0.031 matrix(20) 0.031 nestedloop(12) 0.075 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 0.885
Output for 7.2.20
simple 0.035 simplecall 0.011 simpleucall 0.030 simpleudcall 0.031 mandel 0.210 mandel2 0.187 ackermann(7) 0.031 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.068 fibo(30) 0.107 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.032 matrix(20) 0.031 nestedloop(12) 0.068 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 0.912
Output for 7.2.19
simple 0.036 simplecall 0.011 simpleucall 0.031 simpleudcall 0.040 mandel 0.174 mandel2 0.179 ackermann(7) 0.029 ary(50000) 0.018 ary2(50000) 0.018 ary3(2000) 0.083 fibo(30) 0.124 hash1(50000) 0.016 hash2(500) 0.012 heapsort(20000) 0.032 matrix(20) 0.031 nestedloop(12) 0.121 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.985
Output for 7.2.18
simple 0.037 simplecall 0.012 simpleucall 0.032 simpleudcall 0.033 mandel 0.174 mandel2 0.177 ackermann(7) 0.029 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.105 hash1(50000) 0.015 hash2(500) 0.012 heapsort(20000) 0.031 matrix(20) 0.031 nestedloop(12) 0.119 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.918
Output for 7.2.17
simple 0.037 simplecall 0.011 simpleucall 0.030 simpleudcall 0.032 mandel 0.209 mandel2 0.205 ackermann(7) 0.042 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.066 fibo(30) 0.106 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.031 matrix(20) 0.032 nestedloop(12) 0.073 sieve(30) 0.035 strcat(200000) 0.011 ------------------------ Total 0.961
Output for 7.2.16
simple 0.052 simplecall 0.011 simpleucall 0.030 simpleudcall 0.033 mandel 0.179 mandel2 0.201 ackermann(7) 0.029 ary(50000) 0.015 ary2(50000) 0.006 ary3(2000) 0.066 fibo(30) 0.108 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.032 matrix(20) 0.033 nestedloop(12) 0.078 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 0.932
Output for 7.2.15
simple 0.034 simplecall 0.011 simpleucall 0.029 simpleudcall 0.032 mandel 0.166 mandel2 0.179 ackermann(7) 0.029 ary(50000) 0.013 ary2(50000) 0.006 ary3(2000) 0.071 fibo(30) 0.148 hash1(50000) 0.031 hash2(500) 0.020 heapsort(20000) 0.059 matrix(20) 0.053 nestedloop(12) 0.096 sieve(30) 0.036 strcat(200000) 0.012 ------------------------ Total 1.025
Output for 7.2.14
simple 0.041 simplecall 0.014 simpleucall 0.035 simpleudcall 0.049 mandel 0.191 mandel2 0.193 ackermann(7) 0.029 ary(50000) 0.014 ary2(50000) 0.005 ary3(2000) 0.078 fibo(30) 0.111 hash1(50000) 0.016 hash2(500) 0.015 heapsort(20000) 0.038 matrix(20) 0.038 nestedloop(12) 0.074 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 0.973
Output for 7.2.13
simple 0.064 simplecall 0.015 simpleucall 0.046 simpleudcall 0.037 mandel 0.188 mandel2 0.186 ackermann(7) 0.033 ary(50000) 0.009 ary2(50000) 0.007 ary3(2000) 0.072 fibo(30) 0.123 hash1(50000) 0.020 hash2(500) 0.019 heapsort(20000) 0.035 matrix(20) 0.042 nestedloop(12) 0.141 sieve(30) 0.030 strcat(200000) 0.013 ------------------------ Total 1.080
Output for 7.2.12
simple 0.044 simplecall 0.011 simpleucall 0.030 simpleudcall 0.032 mandel 0.175 mandel2 0.289 ackermann(7) 0.040 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.083 fibo(30) 0.147 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.033 matrix(20) 0.034 nestedloop(12) 0.127 sieve(30) 0.035 strcat(200000) 0.011 ------------------------ Total 1.137
Output for 7.2.11
simple 0.055 simplecall 0.016 simpleucall 0.046 simpleudcall 0.062 mandel 0.250 mandel2 0.194 ackermann(7) 0.040 ary(50000) 0.029 ary2(50000) 0.006 ary3(2000) 0.094 fibo(30) 0.114 hash1(50000) 0.016 hash2(500) 0.014 heapsort(20000) 0.033 matrix(20) 0.031 nestedloop(12) 0.070 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.100
Output for 7.2.10
simple 0.035 simplecall 0.011 simpleucall 0.031 simpleudcall 0.033 mandel 0.176 mandel2 0.185 ackermann(7) 0.028 ary(50000) 0.011 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.112 hash1(50000) 0.017 hash2(500) 0.013 heapsort(20000) 0.035 matrix(20) 0.033 nestedloop(12) 0.123 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 0.951
Output for 7.2.9
simple 0.044 simplecall 0.012 simpleucall 0.043 simpleudcall 0.050 mandel 0.228 mandel2 0.183 ackermann(7) 0.029 ary(50000) 0.008 ary2(50000) 0.007 ary3(2000) 0.067 fibo(30) 0.110 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.033 matrix(20) 0.035 nestedloop(12) 0.085 sieve(30) 0.029 strcat(200000) 0.013 ------------------------ Total 1.004
Output for 7.2.8
simple 0.035 simplecall 0.011 simpleucall 0.030 simpleudcall 0.033 mandel 0.178 mandel2 0.214 ackermann(7) 0.030 ary(50000) 0.008 ary2(50000) 0.023 ary3(2000) 0.070 fibo(30) 0.108 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.032 matrix(20) 0.032 nestedloop(12) 0.068 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 0.929
Output for 7.2.7
simple 0.035 simplecall 0.011 simpleucall 0.029 simpleudcall 0.033 mandel 0.176 mandel2 0.180 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.069 fibo(30) 0.108 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.034 matrix(20) 0.033 nestedloop(12) 0.068 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.877
Output for 7.2.6
simple 0.036 simplecall 0.012 simpleucall 0.030 simpleudcall 0.032 mandel 0.174 mandel2 0.175 ackermann(7) 0.027 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.065 fibo(30) 0.107 hash1(50000) 0.017 hash2(500) 0.013 heapsort(20000) 0.034 matrix(20) 0.034 nestedloop(12) 0.124 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 0.925
Output for 7.2.5
simple 0.057 simplecall 0.011 simpleucall 0.031 simpleudcall 0.033 mandel 0.167 mandel2 0.205 ackermann(7) 0.043 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.066 fibo(30) 0.108 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.032 matrix(20) 0.031 nestedloop(12) 0.118 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.974
Output for 7.2.4
simple 0.037 simplecall 0.012 simpleucall 0.030 simpleudcall 0.033 mandel 0.173 mandel2 0.187 ackermann(7) 0.029 ary(50000) 0.021 ary2(50000) 0.006 ary3(2000) 0.068 fibo(30) 0.112 hash1(50000) 0.016 hash2(500) 0.012 heapsort(20000) 0.035 matrix(20) 0.034 nestedloop(12) 0.124 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 0.961
Output for 7.2.3
simple 0.037 simplecall 0.012 simpleucall 0.031 simpleudcall 0.033 mandel 0.184 mandel2 0.178 ackermann(7) 0.029 ary(50000) 0.015 ary2(50000) 0.007 ary3(2000) 0.068 fibo(30) 0.108 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.033 matrix(20) 0.032 nestedloop(12) 0.121 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.946
Output for 7.2.2
simple 0.036 simplecall 0.013 simpleucall 0.032 simpleudcall 0.034 mandel 0.182 mandel2 0.172 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.109 fibo(30) 0.163 hash1(50000) 0.016 hash2(500) 0.013 heapsort(20000) 0.036 matrix(20) 0.034 nestedloop(12) 0.123 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.037
Output for 7.2.1
simple 0.035 simplecall 0.011 simpleucall 0.029 simpleudcall 0.032 mandel 0.236 mandel2 0.186 ackermann(7) 0.028 ary(50000) 0.008 ary2(50000) 0.008 ary3(2000) 0.083 fibo(30) 0.109 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.032 matrix(20) 0.031 nestedloop(12) 0.068 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.960
Output for 7.2.0
simple 0.035 simplecall 0.011 simpleucall 0.029 simpleudcall 0.032 mandel 0.174 mandel2 0.173 ackermann(7) 0.031 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.071 fibo(30) 0.106 hash1(50000) 0.015 hash2(500) 0.013 heapsort(20000) 0.034 matrix(20) 0.033 nestedloop(12) 0.069 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 0.873
Output for 7.1.33
simple 0.089 simplecall 0.017 simpleucall 0.061 simpleudcall 0.052 mandel 0.205 mandel2 0.223 ackermann(7) 0.036 ary(50000) 0.014 ary2(50000) 0.006 ary3(2000) 0.099 fibo(30) 0.122 hash1(50000) 0.020 hash2(500) 0.012 heapsort(20000) 0.042 matrix(20) 0.047 nestedloop(12) 0.190 sieve(30) 0.025 strcat(200000) 0.008 ------------------------ Total 1.267
Output for 7.1.32
simple 0.073 simplecall 0.012 simpleucall 0.047 simpleudcall 0.054 mandel 0.209 mandel2 0.222 ackermann(7) 0.037 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.072 fibo(30) 0.129 hash1(50000) 0.027 hash2(500) 0.012 heapsort(20000) 0.047 matrix(20) 0.054 nestedloop(12) 0.139 sieve(30) 0.032 strcat(200000) 0.011 ------------------------ Total 1.192
Output for 7.1.31
simple 0.136 simplecall 0.017 simpleucall 0.065 simpleudcall 0.059 mandel 0.365 mandel2 0.352 ackermann(7) 0.057 ary(50000) 0.013 ary2(50000) 0.010 ary3(2000) 0.167 fibo(30) 0.245 hash1(50000) 0.070 hash2(500) 0.028 heapsort(20000) 0.068 matrix(20) 0.049 nestedloop(12) 0.125 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.859
Output for 7.1.30
simple 0.071 simplecall 0.011 simpleucall 0.047 simpleudcall 0.053 mandel 0.233 mandel2 0.256 ackermann(7) 0.036 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.069 fibo(30) 0.118 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.038 matrix(20) 0.045 nestedloop(12) 0.146 sieve(30) 0.026 strcat(200000) 0.008 ------------------------ Total 1.202
Output for 7.1.29
simple 0.091 simplecall 0.018 simpleucall 0.054 simpleudcall 0.062 mandel 0.280 mandel2 0.327 ackermann(7) 0.057 ary(50000) 0.011 ary2(50000) 0.010 ary3(2000) 0.071 fibo(30) 0.120 hash1(50000) 0.020 hash2(500) 0.012 heapsort(20000) 0.047 matrix(20) 0.042 nestedloop(12) 0.127 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.380
Output for 7.1.28
simple 0.072 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.203 mandel2 0.208 ackermann(7) 0.036 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.068 fibo(30) 0.123 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.046 matrix(20) 0.041 nestedloop(12) 0.126 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.080
Output for 7.1.27
simple 0.074 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.209 mandel2 0.276 ackermann(7) 0.040 ary(50000) 0.010 ary2(50000) 0.009 ary3(2000) 0.090 fibo(30) 0.139 hash1(50000) 0.020 hash2(500) 0.012 heapsort(20000) 0.041 matrix(20) 0.044 nestedloop(12) 0.132 sieve(30) 0.043 strcat(200000) 0.013 ------------------------ Total 1.231
Output for 7.1.26
simple 0.072 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.208 mandel2 0.219 ackermann(7) 0.036 ary(50000) 0.010 ary2(50000) 0.021 ary3(2000) 0.069 fibo(30) 0.136 hash1(50000) 0.030 hash2(500) 0.019 heapsort(20000) 0.065 matrix(20) 0.062 nestedloop(12) 0.147 sieve(30) 0.033 strcat(200000) 0.007 ------------------------ Total 1.212
Output for 7.1.25
simple 0.074 simplecall 0.012 simpleucall 0.034 simpleudcall 0.035 mandel 0.214 mandel2 0.217 ackermann(7) 0.038 ary(50000) 0.016 ary2(50000) 0.009 ary3(2000) 0.068 fibo(30) 0.121 hash1(50000) 0.029 hash2(500) 0.019 heapsort(20000) 0.062 matrix(20) 0.043 nestedloop(12) 0.126 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.146
Output for 7.1.24
simple 0.072 simplecall 0.012 simpleucall 0.032 simpleudcall 0.036 mandel 0.214 mandel2 0.263 ackermann(7) 0.035 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.129 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.042 matrix(20) 0.042 nestedloop(12) 0.129 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.150
Output for 7.1.23
simple 0.070 simplecall 0.011 simpleucall 0.030 simpleudcall 0.037 mandel 0.201 mandel2 0.233 ackermann(7) 0.036 ary(50000) 0.009 ary2(50000) 0.007 ary3(2000) 0.102 fibo(30) 0.138 hash1(50000) 0.021 hash2(500) 0.016 heapsort(20000) 0.047 matrix(20) 0.054 nestedloop(12) 0.120 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.162
Output for 7.1.22
simple 0.073 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.203 mandel2 0.218 ackermann(7) 0.038 ary(50000) 0.021 ary2(50000) 0.006 ary3(2000) 0.074 fibo(30) 0.122 hash1(50000) 0.021 hash2(500) 0.014 heapsort(20000) 0.042 matrix(20) 0.054 nestedloop(12) 0.129 sieve(30) 0.024 strcat(200000) 0.010 ------------------------ Total 1.128
Output for 7.1.21
simple 0.073 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.262 mandel2 0.221 ackermann(7) 0.035 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.068 fibo(30) 0.119 hash1(50000) 0.019 hash2(500) 0.014 heapsort(20000) 0.043 matrix(20) 0.043 nestedloop(12) 0.129 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.149
Output for 7.1.20
simple 0.070 simplecall 0.011 simpleucall 0.030 simpleudcall 0.035 mandel 0.218 mandel2 0.221 ackermann(7) 0.050 ary(50000) 0.012 ary2(50000) 0.009 ary3(2000) 0.092 fibo(30) 0.148 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.054 matrix(20) 0.042 nestedloop(12) 0.121 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 1.174
Output for 7.1.19
simple 0.074 simplecall 0.011 simpleucall 0.048 simpleudcall 0.052 mandel 0.241 mandel2 0.208 ackermann(7) 0.044 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.114 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.050 matrix(20) 0.045 nestedloop(12) 0.118 sieve(30) 0.033 strcat(200000) 0.006 ------------------------ Total 1.159
Output for 7.1.18
simple 0.072 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.205 mandel2 0.229 ackermann(7) 0.034 ary(50000) 0.035 ary2(50000) 0.007 ary3(2000) 0.067 fibo(30) 0.117 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.040 matrix(20) 0.053 nestedloop(12) 0.123 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.123
Output for 7.1.17
simple 0.070 simplecall 0.012 simpleucall 0.031 simpleudcall 0.036 mandel 0.226 mandel2 0.214 ackermann(7) 0.036 ary(50000) 0.008 ary2(50000) 0.008 ary3(2000) 0.094 fibo(30) 0.147 hash1(50000) 0.021 hash2(500) 0.013 heapsort(20000) 0.048 matrix(20) 0.044 nestedloop(12) 0.126 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.164
Output for 7.1.16
simple 0.143 simplecall 0.012 simpleucall 0.033 simpleudcall 0.044 mandel 0.231 mandel2 0.224 ackermann(7) 0.034 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.066 fibo(30) 0.116 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.040 matrix(20) 0.043 nestedloop(12) 0.125 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.186
Output for 7.1.15
simple 0.081 simplecall 0.015 simpleucall 0.050 simpleudcall 0.039 mandel 0.201 mandel2 0.254 ackermann(7) 0.053 ary(50000) 0.037 ary2(50000) 0.010 ary3(2000) 0.084 fibo(30) 0.133 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.044 matrix(20) 0.043 nestedloop(12) 0.120 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 1.226
Output for 7.1.14
simple 0.069 simplecall 0.011 simpleucall 0.030 simpleudcall 0.036 mandel 0.194 mandel2 0.205 ackermann(7) 0.034 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.066 fibo(30) 0.126 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.040 matrix(20) 0.041 nestedloop(12) 0.119 sieve(30) 0.033 strcat(200000) 0.008 ------------------------ Total 1.057
Output for 7.1.13
simple 0.074 simplecall 0.012 simpleucall 0.030 simpleudcall 0.035 mandel 0.204 mandel2 0.248 ackermann(7) 0.034 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.069 fibo(30) 0.114 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.041 matrix(20) 0.042 nestedloop(12) 0.126 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.105
Output for 7.1.12
simple 0.078 simplecall 0.012 simpleucall 0.030 simpleudcall 0.036 mandel 0.200 mandel2 0.206 ackermann(7) 0.034 ary(50000) 0.012 ary2(50000) 0.006 ary3(2000) 0.068 fibo(30) 0.117 hash1(50000) 0.036 hash2(500) 0.012 heapsort(20000) 0.039 matrix(20) 0.045 nestedloop(12) 0.127 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.091
Output for 7.1.11
simple 0.074 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.200 mandel2 0.199 ackermann(7) 0.034 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.069 fibo(30) 0.137 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.043 matrix(20) 0.042 nestedloop(12) 0.130 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.082
Output for 7.1.10
simple 0.072 simplecall 0.012 simpleucall 0.030 simpleudcall 0.035 mandel 0.207 mandel2 0.206 ackermann(7) 0.034 ary(50000) 0.010 ary2(50000) 0.005 ary3(2000) 0.065 fibo(30) 0.123 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.039 matrix(20) 0.041 nestedloop(12) 0.127 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.066
Output for 7.1.9
simple 0.070 simplecall 0.011 simpleucall 0.033 simpleudcall 0.039 mandel 0.232 mandel2 0.266 ackermann(7) 0.035 ary(50000) 0.017 ary2(50000) 0.011 ary3(2000) 0.067 fibo(30) 0.130 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.039 matrix(20) 0.041 nestedloop(12) 0.119 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.171
Output for 7.1.8
simple 0.070 simplecall 0.011 simpleucall 0.031 simpleudcall 0.035 mandel 0.197 mandel2 0.222 ackermann(7) 0.044 ary(50000) 0.009 ary2(50000) 0.025 ary3(2000) 0.069 fibo(30) 0.128 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.042 matrix(20) 0.041 nestedloop(12) 0.119 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.105
Output for 7.1.7
simple 0.072 simplecall 0.012 simpleucall 0.031 simpleudcall 0.036 mandel 0.226 mandel2 0.206 ackermann(7) 0.034 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.114 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.045 matrix(20) 0.042 nestedloop(12) 0.133 sieve(30) 0.024 strcat(200000) 0.009 ------------------------ Total 1.096
Output for 7.1.6
simple 0.070 simplecall 0.013 simpleucall 0.063 simpleudcall 0.046 mandel 0.223 mandel2 0.213 ackermann(7) 0.042 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.114 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.038 matrix(20) 0.041 nestedloop(12) 0.122 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 1.127
Output for 7.1.5
simple 0.075 simplecall 0.012 simpleucall 0.041 simpleudcall 0.035 mandel 0.199 mandel2 0.236 ackermann(7) 0.035 ary(50000) 0.009 ary2(50000) 0.005 ary3(2000) 0.067 fibo(30) 0.132 hash1(50000) 0.022 hash2(500) 0.013 heapsort(20000) 0.038 matrix(20) 0.041 nestedloop(12) 0.129 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.119
Output for 7.1.4
simple 0.071 simplecall 0.012 simpleucall 0.032 simpleudcall 0.034 mandel 0.235 mandel2 0.220 ackermann(7) 0.035 ary(50000) 0.020 ary2(50000) 0.006 ary3(2000) 0.072 fibo(30) 0.118 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.043 matrix(20) 0.041 nestedloop(12) 0.120 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.123
Output for 7.1.3
simple 0.070 simplecall 0.011 simpleucall 0.030 simpleudcall 0.036 mandel 0.210 mandel2 0.216 ackermann(7) 0.037 ary(50000) 0.019 ary2(50000) 0.006 ary3(2000) 0.069 fibo(30) 0.154 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.041 matrix(20) 0.042 nestedloop(12) 0.122 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.128
Output for 7.1.2
simple 0.074 simplecall 0.011 simpleucall 0.032 simpleudcall 0.037 mandel 0.276 mandel2 0.296 ackermann(7) 0.036 ary(50000) 0.011 ary2(50000) 0.006 ary3(2000) 0.073 fibo(30) 0.117 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.045 matrix(20) 0.043 nestedloop(12) 0.128 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.247
Output for 7.1.1
simple 0.071 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.249 mandel2 0.215 ackermann(7) 0.034 ary(50000) 0.032 ary2(50000) 0.006 ary3(2000) 0.067 fibo(30) 0.136 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.039 matrix(20) 0.045 nestedloop(12) 0.126 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 1.159
Output for 7.1.0
simple 0.073 simplecall 0.012 simpleucall 0.031 simpleudcall 0.035 mandel 0.197 mandel2 0.204 ackermann(7) 0.038 ary(50000) 0.008 ary2(50000) 0.006 ary3(2000) 0.066 fibo(30) 0.140 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.048 matrix(20) 0.043 nestedloop(12) 0.136 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.100
Output for 7.0.33
simple 0.074 simplecall 0.012 simpleucall 0.037 simpleudcall 0.045 mandel 0.240 mandel2 0.246 ackermann(7) 0.037 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.091 fibo(30) 0.149 hash1(50000) 0.024 hash2(500) 0.014 heapsort(20000) 0.052 matrix(20) 0.067 nestedloop(12) 0.145 sieve(30) 0.037 strcat(200000) 0.013 ------------------------ Total 1.301
Output for 7.0.32
simple 0.074 simplecall 0.012 simpleucall 0.034 simpleudcall 0.037 mandel 0.265 mandel2 0.237 ackermann(7) 0.039 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.085 fibo(30) 0.139 hash1(50000) 0.022 hash2(500) 0.013 heapsort(20000) 0.051 matrix(20) 0.048 nestedloop(12) 0.123 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 1.225
Output for 7.0.31
simple 0.072 simplecall 0.012 simpleucall 0.033 simpleudcall 0.040 mandel 0.225 mandel2 0.221 ackermann(7) 0.038 ary(50000) 0.019 ary2(50000) 0.006 ary3(2000) 0.083 fibo(30) 0.127 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.049 matrix(20) 0.051 nestedloop(12) 0.120 sieve(30) 0.027 strcat(200000) 0.007 ------------------------ Total 1.164
Output for 7.0.30
simple 0.074 simplecall 0.012 simpleucall 0.032 simpleudcall 0.036 mandel 0.226 mandel2 0.246 ackermann(7) 0.041 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.095 fibo(30) 0.140 hash1(50000) 0.021 hash2(500) 0.013 heapsort(20000) 0.052 matrix(20) 0.050 nestedloop(12) 0.124 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.211
Output for 7.0.29
simple 0.075 simplecall 0.012 simpleucall 0.051 simpleudcall 0.053 mandel 0.231 mandel2 0.232 ackermann(7) 0.045 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.092 fibo(30) 0.130 hash1(50000) 0.030 hash2(500) 0.014 heapsort(20000) 0.047 matrix(20) 0.050 nestedloop(12) 0.118 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.229
Output for 7.0.28
simple 0.072 simplecall 0.012 simpleucall 0.032 simpleudcall 0.036 mandel 0.247 mandel2 0.208 ackermann(7) 0.037 ary(50000) 0.010 ary2(50000) 0.006 ary3(2000) 0.122 fibo(30) 0.126 hash1(50000) 0.020 hash2(500) 0.014 heapsort(20000) 0.050 matrix(20) 0.048 nestedloop(12) 0.119 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.192
Output for 7.0.27
simple 0.073 simplecall 0.012 simpleucall 0.032 simpleudcall 0.037 mandel 0.255 mandel2 0.244 ackermann(7) 0.039 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.085 fibo(30) 0.120 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.045 matrix(20) 0.047 nestedloop(12) 0.124 sieve(30) 0.026 strcat(200000) 0.006 ------------------------ Total 1.194
Output for 7.0.26
simple 0.073 simplecall 0.012 simpleucall 0.033 simpleudcall 0.036 mandel 0.231 mandel2 0.292 ackermann(7) 0.038 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.124 fibo(30) 0.126 hash1(50000) 0.023 hash2(500) 0.013 heapsort(20000) 0.050 matrix(20) 0.050 nestedloop(12) 0.123 sieve(30) 0.027 strcat(200000) 0.007 ------------------------ Total 1.275
Output for 7.0.25
simple 0.087 simplecall 0.013 simpleucall 0.035 simpleudcall 0.038 mandel 0.258 mandel2 0.214 ackermann(7) 0.038 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.091 fibo(30) 0.157 hash1(50000) 0.020 hash2(500) 0.014 heapsort(20000) 0.049 matrix(20) 0.052 nestedloop(12) 0.122 sieve(30) 0.027 strcat(200000) 0.010 ------------------------ Total 1.241
Output for 7.0.24
simple 0.084 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.248 mandel2 0.220 ackermann(7) 0.037 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.084 fibo(30) 0.140 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.048 matrix(20) 0.050 nestedloop(12) 0.122 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.194
Output for 7.0.23
simple 0.072 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.218 mandel2 0.223 ackermann(7) 0.037 ary(50000) 0.015 ary2(50000) 0.027 ary3(2000) 0.083 fibo(30) 0.120 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.048 matrix(20) 0.050 nestedloop(12) 0.121 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.157
Output for 7.0.22
simple 0.076 simplecall 0.013 simpleucall 0.049 simpleudcall 0.038 mandel 0.229 mandel2 0.228 ackermann(7) 0.040 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.097 fibo(30) 0.134 hash1(50000) 0.022 hash2(500) 0.015 heapsort(20000) 0.044 matrix(20) 0.049 nestedloop(12) 0.122 sieve(30) 0.026 strcat(200000) 0.008 ------------------------ Total 1.207
Output for 7.0.21
simple 0.073 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.200 mandel2 0.259 ackermann(7) 0.037 ary(50000) 0.016 ary2(50000) 0.006 ary3(2000) 0.084 fibo(30) 0.122 hash1(50000) 0.020 hash2(500) 0.014 heapsort(20000) 0.050 matrix(20) 0.050 nestedloop(12) 0.118 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.160
Output for 7.0.20
simple 0.073 simplecall 0.012 simpleucall 0.036 simpleudcall 0.040 mandel 0.196 mandel2 0.221 ackermann(7) 0.037 ary(50000) 0.014 ary2(50000) 0.006 ary3(2000) 0.087 fibo(30) 0.118 hash1(50000) 0.027 hash2(500) 0.013 heapsort(20000) 0.046 matrix(20) 0.049 nestedloop(12) 0.118 sieve(30) 0.027 strcat(200000) 0.007 ------------------------ Total 1.127
Output for 7.0.19
simple 0.071 simplecall 0.012 simpleucall 0.033 simpleudcall 0.035 mandel 0.200 mandel2 0.221 ackermann(7) 0.037 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.084 fibo(30) 0.121 hash1(50000) 0.019 hash2(500) 0.018 heapsort(20000) 0.046 matrix(20) 0.049 nestedloop(12) 0.119 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.110
Output for 7.0.18
simple 0.074 simplecall 0.012 simpleucall 0.048 simpleudcall 0.051 mandel 0.226 mandel2 0.257 ackermann(7) 0.037 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.085 fibo(30) 0.125 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.044 matrix(20) 0.059 nestedloop(12) 0.126 sieve(30) 0.026 strcat(200000) 0.008 ------------------------ Total 1.227
Output for 7.0.17
simple 0.087 simplecall 0.016 simpleucall 0.056 simpleudcall 0.060 mandel 0.231 mandel2 0.235 ackermann(7) 0.039 ary(50000) 0.014 ary2(50000) 0.007 ary3(2000) 0.089 fibo(30) 0.124 hash1(50000) 0.027 hash2(500) 0.015 heapsort(20000) 0.048 matrix(20) 0.050 nestedloop(12) 0.123 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.253
Output for 7.0.16
simple 0.087 simplecall 0.015 simpleucall 0.034 simpleudcall 0.036 mandel 0.221 mandel2 0.224 ackermann(7) 0.043 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.085 fibo(30) 0.121 hash1(50000) 0.022 hash2(500) 0.014 heapsort(20000) 0.048 matrix(20) 0.050 nestedloop(12) 0.119 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.168
Output for 7.0.15
simple 0.073 simplecall 0.013 simpleucall 0.033 simpleudcall 0.035 mandel 0.219 mandel2 0.260 ackermann(7) 0.038 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.087 fibo(30) 0.120 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.047 matrix(20) 0.048 nestedloop(12) 0.118 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 1.171
Output for 7.0.14
simple 0.074 simplecall 0.012 simpleucall 0.033 simpleudcall 0.050 mandel 0.220 mandel2 0.247 ackermann(7) 0.038 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.086 fibo(30) 0.160 hash1(50000) 0.034 hash2(500) 0.022 heapsort(20000) 0.073 matrix(20) 0.049 nestedloop(12) 0.120 sieve(30) 0.031 strcat(200000) 0.007 ------------------------ Total 1.273
Output for 7.0.13
simple 0.078 simplecall 0.018 simpleucall 0.037 simpleudcall 0.035 mandel 0.256 mandel2 0.246 ackermann(7) 0.038 ary(50000) 0.009 ary2(50000) 0.008 ary3(2000) 0.087 fibo(30) 0.122 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.046 matrix(20) 0.047 nestedloop(12) 0.118 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 1.208
Output for 7.0.12
simple 0.075 simplecall 0.012 simpleucall 0.033 simpleudcall 0.037 mandel 0.221 mandel2 0.208 ackermann(7) 0.042 ary(50000) 0.019 ary2(50000) 0.006 ary3(2000) 0.085 fibo(30) 0.120 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.053 matrix(20) 0.049 nestedloop(12) 0.121 sieve(30) 0.030 strcat(200000) 0.006 ------------------------ Total 1.148
Output for 7.0.11
simple 0.077 simplecall 0.012 simpleucall 0.033 simpleudcall 0.036 mandel 0.220 mandel2 0.211 ackermann(7) 0.037 ary(50000) 0.010 ary2(50000) 0.006 ary3(2000) 0.084 fibo(30) 0.121 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.045 matrix(20) 0.057 nestedloop(12) 0.122 sieve(30) 0.029 strcat(200000) 0.007 ------------------------ Total 1.141
Output for 7.0.10
simple 0.072 simplecall 0.012 simpleucall 0.032 simpleudcall 0.037 mandel 0.236 mandel2 0.220 ackermann(7) 0.036 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.089 fibo(30) 0.130 hash1(50000) 0.024 hash2(500) 0.013 heapsort(20000) 0.047 matrix(20) 0.048 nestedloop(12) 0.122 sieve(30) 0.027 strcat(200000) 0.007 ------------------------ Total 1.165
Output for 7.0.9
simple 0.071 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.221 mandel2 0.246 ackermann(7) 0.043 ary(50000) 0.024 ary2(50000) 0.009 ary3(2000) 0.088 fibo(30) 0.141 hash1(50000) 0.022 hash2(500) 0.018 heapsort(20000) 0.046 matrix(20) 0.048 nestedloop(12) 0.118 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 1.205
Output for 7.0.8
simple 0.071 simplecall 0.012 simpleucall 0.034 simpleudcall 0.036 mandel 0.200 mandel2 0.207 ackermann(7) 0.038 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.086 fibo(30) 0.123 hash1(50000) 0.022 hash2(500) 0.013 heapsort(20000) 0.049 matrix(20) 0.050 nestedloop(12) 0.123 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 1.112
Output for 7.0.7
simple 0.073 simplecall 0.012 simpleucall 0.033 simpleudcall 0.038 mandel 0.213 mandel2 0.256 ackermann(7) 0.043 ary(50000) 0.019 ary2(50000) 0.007 ary3(2000) 0.118 fibo(30) 0.144 hash1(50000) 0.024 hash2(500) 0.013 heapsort(20000) 0.047 matrix(20) 0.050 nestedloop(12) 0.121 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.245
Output for 7.0.6
simple 0.072 simplecall 0.012 simpleucall 0.033 simpleudcall 0.035 mandel 0.222 mandel2 0.266 ackermann(7) 0.058 ary(50000) 0.019 ary2(50000) 0.007 ary3(2000) 0.085 fibo(30) 0.126 hash1(50000) 0.023 hash2(500) 0.013 heapsort(20000) 0.047 matrix(20) 0.047 nestedloop(12) 0.119 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.216
Output for 7.0.5
simple 0.074 simplecall 0.012 simpleucall 0.033 simpleudcall 0.036 mandel 0.236 mandel2 0.241 ackermann(7) 0.038 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.086 fibo(30) 0.124 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.044 matrix(20) 0.048 nestedloop(12) 0.120 sieve(30) 0.027 strcat(200000) 0.007 ------------------------ Total 1.173
Output for 7.0.4
simple 0.072 simplecall 0.012 simpleucall 0.034 simpleudcall 0.038 mandel 0.220 mandel2 0.208 ackermann(7) 0.045 ary(50000) 0.035 ary2(50000) 0.006 ary3(2000) 0.087 fibo(30) 0.121 hash1(50000) 0.019 hash2(500) 0.014 heapsort(20000) 0.049 matrix(20) 0.051 nestedloop(12) 0.122 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.164
Output for 7.0.3
simple 0.075 simplecall 0.013 simpleucall 0.036 simpleudcall 0.038 mandel 0.219 mandel2 0.224 ackermann(7) 0.037 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.087 fibo(30) 0.122 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.045 matrix(20) 0.048 nestedloop(12) 0.120 sieve(30) 0.026 strcat(200000) 0.006 ------------------------ Total 1.147
Output for 7.0.2
simple 0.082 simplecall 0.016 simpleucall 0.034 simpleudcall 0.036 mandel 0.285 mandel2 0.223 ackermann(7) 0.037 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.085 fibo(30) 0.126 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.046 matrix(20) 0.049 nestedloop(12) 0.123 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 1.221
Output for 7.0.1
simple 0.075 simplecall 0.012 simpleucall 0.032 simpleudcall 0.035 mandel 0.247 mandel2 0.223 ackermann(7) 0.037 ary(50000) 0.019 ary2(50000) 0.006 ary3(2000) 0.084 fibo(30) 0.119 hash1(50000) 0.019 hash2(500) 0.013 heapsort(20000) 0.047 matrix(20) 0.048 nestedloop(12) 0.119 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.167
Output for 7.0.0
simple 0.071 simplecall 0.012 simpleucall 0.034 simpleudcall 0.036 mandel 0.202 mandel2 0.232 ackermann(7) 0.036 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.084 fibo(30) 0.120 hash1(50000) 0.020 hash2(500) 0.013 heapsort(20000) 0.045 matrix(20) 0.047 nestedloop(12) 0.119 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 1.119
Output for 5.6.40
simple 0.153 simplecall 0.129 simpleucall 0.123 simpleudcall 0.126 mandel 0.329 mandel2 0.353 ackermann(7) 0.128 ary(50000) 0.027 ary2(50000) 0.021 ary3(2000) 0.176 fibo(30) 0.388
Process exited with code 137.
Output for 5.6.39
simple 0.126 simplecall 0.129 simpleucall 0.124 simpleudcall 0.127 mandel 0.345 mandel2 0.455 ackermann(7) 0.197 ary(50000) 0.043 ary2(50000) 0.034 ary3(2000) 0.183
Process exited with code 137.
Output for 5.6.38
simple 0.142 simplecall 0.136 simpleucall 0.132 simpleudcall 0.167 mandel 0.338 mandel2 0.346 ackermann(7) 0.129 ary(50000) 0.026 ary2(50000) 0.020 ary3(2000) 0.173 fibo(30) 0.386
Process exited with code 137.
Output for 5.6.37
simple 0.145 simplecall 0.130 simpleucall 0.123 simpleudcall 0.133 mandel 0.323 mandel2 0.346 ackermann(7) 0.130 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.178 fibo(30) 0.377 hash1(50000) 0.040
Process exited with code 137.
Output for 5.6.36
simple 0.121 simplecall 0.125 simpleucall 0.124 simpleudcall 0.124 mandel 0.318 mandel2 0.335 ackermann(7) 0.129 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.170 fibo(30) 0.368 hash1(50000) 0.039 hash2(500) 0.034
Process exited with code 137.
Output for 5.6.35
simple 0.172 simplecall 0.149 simpleucall 0.134 simpleudcall 0.138 mandel 0.297 mandel2 0.337 ackermann(7) 0.127 ary(50000) 0.027 ary2(50000) 0.021 ary3(2000) 0.195 fibo(30) 0.376
Process exited with code 137.
Output for 5.6.34
simple 0.162 simplecall 0.180 simpleucall 0.145 simpleudcall 0.171 mandel 0.305 mandel2 0.349 ackermann(7) 0.162 ary(50000) 0.032 ary2(50000) 0.020 ary3(2000) 0.179
Process exited with code 137.
Output for 5.6.33
simple 0.121 simplecall 0.127 simpleucall 0.122 simpleudcall 0.121 mandel 0.295 mandel2 0.344 ackermann(7) 0.133 ary(50000) 0.026 ary2(50000) 0.021 ary3(2000) 0.171 fibo(30) 0.366 hash1(50000) 0.038 hash2(500) 0.033
Process exited with code 137.
Output for 5.6.32
simple 0.124 simplecall 0.149 simpleucall 0.208 simpleudcall 0.223 mandel 0.418 mandel2 0.455 ackermann(7) 0.177 ary(50000) 0.043 ary2(50000) 0.027
Process exited with code 137.
Output for 5.6.31
simple 0.142 simplecall 0.172 simpleucall 0.223 simpleudcall 0.216 mandel 0.416 mandel2 0.530 ackermann(7) 0.128 ary(50000) 0.028 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.30
simple 0.138 simplecall 0.202 simpleucall 0.187 simpleudcall 0.178 mandel 0.385 mandel2 0.473 ackermann(7) 0.140 ary(50000) 0.036 ary2(50000) 0.023 ary3(2000) 0.180
Process exited with code 137.
Output for 5.6.29
simple 0.168 simplecall 0.159 simpleucall 0.130 simpleudcall 0.133 mandel 0.427 mandel2 0.339 ackermann(7) 0.129 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.176
Process exited with code 137.
Output for 5.6.28
simple 0.130 simplecall 0.136 simpleucall 0.145 simpleudcall 0.140 mandel 0.375 mandel2 0.415 ackermann(7) 0.132 ary(50000) 0.030 ary2(50000) 0.020 ary3(2000) 0.194
Process exited with code 137.
Output for 5.6.27
simple 0.183 simplecall 0.134 simpleucall 0.144 simpleudcall 0.150 mandel 0.269 mandel2 0.360 ackermann(7) 0.145 ary(50000) 0.043 ary2(50000) 0.035 ary3(2000) 0.216
Process exited with code 137.
Output for 5.6.26
simple 0.174 simplecall 0.195 simpleucall 0.137 simpleudcall 0.139 mandel 0.372 mandel2 0.364 ackermann(7) 0.125 ary(50000) 0.028 ary2(50000) 0.023 ary3(2000) 0.185
Process exited with code 137.
Output for 5.6.25
simple 0.121 simplecall 0.125 simpleucall 0.123 simpleudcall 0.122 mandel 0.355 mandel2 0.319 ackermann(7) 0.127 ary(50000) 0.026 ary2(50000) 0.020 ary3(2000) 0.174 fibo(30) 0.400 hash1(50000) 0.039
Process exited with code 137.
Output for 5.6.24
simple 0.136 simplecall 0.130 simpleucall 0.126 simpleudcall 0.125 mandel 0.331 mandel2 0.366 ackermann(7) 0.129 ary(50000) 0.029 ary2(50000) 0.021 ary3(2000) 0.214
Process exited with code 137.
Output for 5.6.23
simple 0.147 simplecall 0.162 simpleucall 0.135 simpleudcall 0.167 mandel 0.367 mandel2 0.393 ackermann(7) 0.129 ary(50000) 0.030 ary2(50000) 0.029 ary3(2000) 0.281
Process exited with code 137.
Output for 5.6.22
simple 0.129 simplecall 0.213 simpleucall 0.125 simpleudcall 0.127 mandel 0.320 mandel2 0.400 ackermann(7) 0.135 ary(50000) 0.027 ary2(50000) 0.021 ary3(2000) 0.174
Process exited with code 137.
Output for 5.6.21
simple 0.125 simplecall 0.129 simpleucall 0.124 simpleudcall 0.138 mandel 0.262 mandel2 0.411 ackermann(7) 0.125 ary(50000) 0.030 ary2(50000) 0.022 ary3(2000) 0.184 fibo(30) 0.374 hash1(50000) 0.041
Process exited with code 137.
Output for 5.6.20
simple 0.131 simplecall 0.129 simpleucall 0.121 simpleudcall 0.159 mandel 0.356 mandel2 0.368 ackermann(7) 0.137 ary(50000) 0.031 ary2(50000) 0.020 ary3(2000) 0.173
Process exited with code 137.
Output for 5.6.19
simple 0.167 simplecall 0.228 simpleucall 0.223 simpleudcall 0.150 mandel 0.322 mandel2 0.328 ackermann(7) 0.124 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.175
Process exited with code 137.
Output for 5.6.18
simple 0.123 simplecall 0.132 simpleucall 0.151 simpleudcall 0.134 mandel 0.317 mandel2 0.322 ackermann(7) 0.136 ary(50000) 0.028 ary2(50000) 0.020 ary3(2000) 0.173 fibo(30) 0.379 hash1(50000) 0.041 hash2(500) 0.034
Process exited with code 137.
Output for 5.6.17
simple 0.137 simplecall 0.127 simpleucall 0.121 simpleudcall 0.123 mandel 0.298 mandel2 0.361 ackermann(7) 0.138 ary(50000) 0.026 ary2(50000) 0.020 ary3(2000) 0.177 fibo(30) 0.365 hash1(50000) 0.041 hash2(500) 0.034
Process exited with code 137.
Output for 5.6.16
simple 0.124 simplecall 0.130 simpleucall 0.126 simpleudcall 0.159 mandel 0.356 mandel2 0.424 ackermann(7) 0.128 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.196
Process exited with code 137.
Output for 5.6.15
simple 0.148 simplecall 0.146 simpleucall 0.138 simpleudcall 0.130 mandel 0.332 mandel2 0.372 ackermann(7) 0.127 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.175
Process exited with code 137.
Output for 5.6.14
simple 0.122 simplecall 0.127 simpleucall 0.118 simpleudcall 0.123 mandel 0.292 mandel2 0.365 ackermann(7) 0.128 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.180
Process exited with code 137.
Output for 5.6.13
simple 0.127 simplecall 0.133 simpleucall 0.123 simpleudcall 0.127 mandel 0.338 mandel2 0.322 ackermann(7) 0.125 ary(50000) 0.026 ary2(50000) 0.021 ary3(2000) 0.178 fibo(30) 0.399 hash1(50000) 0.040
Process exited with code 137.
Output for 5.6.12
simple 0.122 simplecall 0.129 simpleucall 0.122 simpleudcall 0.125 mandel 0.328 mandel2 0.348 ackermann(7) 0.135 ary(50000) 0.030 ary2(50000) 0.022 ary3(2000) 0.189 fibo(30) 0.394 hash1(50000) 0.039
Process exited with code 137.
Output for 5.6.11
simple 0.124 simplecall 0.135 simpleucall 0.132 simpleudcall 0.126 mandel 0.266 mandel2 0.408 ackermann(7) 0.138 ary(50000) 0.029 ary2(50000) 0.024 ary3(2000) 0.185
Process exited with code 137.
Output for 5.6.10
simple 0.125 simplecall 0.137 simpleucall 0.123 simpleudcall 0.124 mandel 0.318 mandel2 0.321 ackermann(7) 0.125 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.181 fibo(30) 0.372 hash1(50000) 0.040 hash2(500) 0.033
Process exited with code 137.
Output for 5.6.9
simple 0.123 simplecall 0.143 simpleucall 0.127 simpleudcall 0.135 mandel 0.262 mandel2 0.354 ackermann(7) 0.131 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.188 fibo(30) 0.385 hash1(50000) 0.042 hash2(500) 0.034
Process exited with code 137.
Output for 5.6.8
simple 0.122 simplecall 0.151 simpleucall 0.119 simpleudcall 0.120 mandel 0.258 mandel2 0.319 ackermann(7) 0.132 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.180 fibo(30) 0.387 hash1(50000) 0.042 hash2(500) 0.038
Process exited with code 137.
Output for 5.6.7
simple 0.126 simplecall 0.133 simpleucall 0.125 simpleudcall 0.140 mandel 0.337 mandel2 0.335 ackermann(7) 0.130 ary(50000) 0.027 ary2(50000) 0.021 ary3(2000) 0.177 fibo(30) 0.391 hash1(50000) 0.039
Process exited with code 137.
Output for 5.6.6
simple 0.123 simplecall 0.126 simpleucall 0.118 simpleudcall 0.121 mandel 0.295 mandel2 0.366 ackermann(7) 0.125 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.180 fibo(30) 0.466
Process exited with code 137.
Output for 5.6.5
simple 0.121 simplecall 0.127 simpleucall 0.122 simpleudcall 0.125 mandel 0.299 mandel2 0.329 ackermann(7) 0.134 ary(50000) 0.026 ary2(50000) 0.019 ary3(2000) 0.175 fibo(30) 0.430 hash1(50000) 0.039 hash2(500) 0.033
Process exited with code 137.
Output for 5.6.4
simple 0.124 simplecall 0.129 simpleucall 0.125 simpleudcall 0.141 mandel 0.313 mandel2 0.339 ackermann(7) 0.134 ary(50000) 0.027 ary2(50000) 0.024 ary3(2000) 0.204 fibo(30) 0.404
Process exited with code 137.
Output for 5.6.3
simple 0.125 simplecall 0.133 simpleucall 0.126 simpleudcall 0.127 mandel 0.317 mandel2 0.406 ackermann(7) 0.139 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.188
Process exited with code 137.
Output for 5.6.2
simple 0.122 simplecall 0.174 simpleucall 0.139 simpleudcall 0.146 mandel 0.255 mandel2 0.341 ackermann(7) 0.154 ary(50000) 0.044 ary2(50000) 0.032 ary3(2000) 0.186
Process exited with code 137.
Output for 5.6.1
simple 0.135 simplecall 0.180 simpleucall 0.208 simpleudcall 0.148 mandel 0.298 mandel2 0.452 ackermann(7) 0.145 ary(50000) 0.039 ary2(50000) 0.022 ary3(2000) 0.260
Process exited with code 137.
Output for 5.6.0
simple 0.133 simplecall 0.138 simpleucall 0.123 simpleudcall 0.148 mandel 0.263 mandel2 0.429 ackermann(7) 0.133 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.179 fibo(30) 0.421
Process exited with code 137.
Output for 5.5.38
simple 0.137 simplecall 0.128 simpleucall 0.119 simpleudcall 0.123 mandel 0.302 mandel2 0.500 ackermann(7) 0.166 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.315
Process exited with code 137.
Output for 5.5.37
simple 0.149 simplecall 0.130 simpleucall 0.124 simpleudcall 0.142 mandel 0.337 mandel2 0.340 ackermann(7) 0.129 ary(50000) 0.032 ary2(50000) 0.020 ary3(2000) 0.311
Process exited with code 137.
Output for 5.5.36
simple 0.139 simplecall 0.285 simpleucall 0.173 simpleudcall 0.127 mandel 0.265 mandel2 0.435 ackermann(7) 0.130 ary(50000) 0.028 ary2(50000) 0.021 ary3(2000) 0.224
Process exited with code 137.
Output for 5.5.35
simple 0.136 simplecall 0.137 simpleucall 0.127 simpleudcall 0.128 mandel 0.270 mandel2 0.414 ackermann(7) 0.128 ary(50000) 0.029 ary2(50000) 0.023 ary3(2000) 0.179 fibo(30) 0.453
Process exited with code 137.
Output for 5.5.34
simple 0.130 simplecall 0.139 simpleucall 0.123 simpleudcall 0.122 mandel 0.310 mandel2 0.360 ackermann(7) 0.135 ary(50000) 0.029 ary2(50000) 0.024 ary3(2000) 0.225 fibo(30) 0.418 hash1(50000) 0.040
Process exited with code 137.
Output for 5.5.33
simple 0.142 simplecall 0.145 simpleucall 0.150 simpleudcall 0.125 mandel 0.399 mandel2 0.393 ackermann(7) 0.131 ary(50000) 0.028 ary2(50000) 0.020 ary3(2000) 0.294
Process exited with code 137.
Output for 5.5.32
simple 0.155 simplecall 0.149 simpleucall 0.149 simpleudcall 0.136 mandel 0.291 mandel2 0.447 ackermann(7) 0.141 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.248
Process exited with code 137.
Output for 5.5.31
simple 0.149 simplecall 0.198 simpleucall 0.128 simpleudcall 0.126 mandel 0.380 mandel2 0.366 ackermann(7) 0.254 ary(50000) 0.031 ary2(50000) 0.024 ary3(2000) 0.223
Process exited with code 137.
Output for 5.5.30
simple 0.160 simplecall 0.168 simpleucall 0.155 simpleudcall 0.169 mandel 0.465 mandel2 0.503 ackermann(7) 0.170 ary(50000) 0.065 ary2(50000) 0.025 ary3(2000) 0.216
Process exited with code 137.
Output for 5.5.29
simple 0.144 simplecall 0.175 simpleucall 0.165 simpleudcall 0.137 mandel 0.315 mandel2 0.487 ackermann(7) 0.180 ary(50000) 0.038 ary2(50000) 0.029 ary3(2000) 0.245
Process exited with code 137.
Output for 5.5.28
simple 0.136 simplecall 0.175 simpleucall 0.170 simpleudcall 0.139 mandel 0.314 mandel2 0.363 ackermann(7) 0.146 ary(50000) 0.033 ary2(50000) 0.025 ary3(2000) 0.196
Process exited with code 137.
Output for 5.5.27
simple 0.159 simplecall 0.128 simpleucall 0.124 simpleudcall 0.170 mandel 0.317 mandel2 0.456 ackermann(7) 0.137 ary(50000) 0.026 ary2(50000) 0.020 ary3(2000) 0.177
Process exited with code 137.
Output for 5.5.26
simple 0.131 simplecall 0.142 simpleucall 0.152 simpleudcall 0.176 mandel 0.464 mandel2 0.419 ackermann(7) 0.147 ary(50000) 0.030 ary2(50000) 0.022 ary3(2000) 0.264
Process exited with code 137.
Output for 5.5.25
simple 0.173 simplecall 0.248 simpleucall 0.198 simpleudcall 0.129 mandel 0.324 mandel2 0.574 ackermann(7) 0.138 ary(50000) 0.044 ary2(50000) 0.027 ary3(2000) 0.284
Process exited with code 137.
Output for 5.5.24
simple 0.124 simplecall 0.130 simpleucall 0.121 simpleudcall 0.123 mandel 0.288 mandel2 0.393 ackermann(7) 0.146 ary(50000) 0.028 ary2(50000) 0.024 ary3(2000) 0.207 fibo(30) 0.406 hash1(50000) 0.037
Process exited with code 137.
Output for 5.5.23
simple 0.262 simplecall 0.162 simpleucall 0.197 simpleudcall 0.158 mandel 0.286 mandel2 0.367 ackermann(7) 0.146 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.197
Process exited with code 137.
Output for 5.5.22
simple 0.125 simplecall 0.149 simpleucall 0.121 simpleudcall 0.153 mandel 0.297 mandel2 0.373 ackermann(7) 0.145 ary(50000) 0.027 ary2(50000) 0.020 ary3(2000) 0.177 fibo(30) 0.395 hash1(50000) 0.036 hash2(500) 0.034
Process exited with code 137.
Output for 5.5.21
simple 0.159 simplecall 0.152 simpleucall 0.139 simpleudcall 0.155 mandel 0.305 mandel2 0.352 ackermann(7) 0.133 ary(50000) 0.069 ary2(50000) 0.020 ary3(2000) 0.225
Process exited with code 137.
Output for 5.5.20
simple 0.128 simplecall 0.129 simpleucall 0.166 simpleudcall 0.125 mandel 0.421 mandel2 0.412 ackermann(7) 0.186 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.197
Process exited with code 137.
Output for 5.5.19
simple 0.124 simplecall 0.127 simpleucall 0.118 simpleudcall 0.127 mandel 0.407 mandel2 0.440 ackermann(7) 0.273 ary(50000) 0.040 ary2(50000) 0.034 ary3(2000) 0.192
Process exited with code 137.
Output for 5.5.18
simple 0.157 simplecall 0.194 simpleucall 0.124 simpleudcall 0.138 mandel 0.344 mandel2 0.448 ackermann(7) 0.203 ary(50000) 0.047 ary2(50000) 0.026 ary3(2000) 0.188
Process exited with code 137.
Output for 5.5.17
simple 0.131 simplecall 0.132 simpleucall 0.126 simpleudcall 0.135 mandel 0.351 mandel2 0.442 ackermann(7) 0.144 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.259
Process exited with code 137.
Output for 5.5.16
simple 0.141 simplecall 0.127 simpleucall 0.120 simpleudcall 0.123 mandel 0.329 mandel2 0.418 ackermann(7) 0.136 ary(50000) 0.028 ary2(50000) 0.022 ary3(2000) 0.249
Process exited with code 137.
Output for 5.5.15
simple 0.147 simplecall 0.131 simpleucall 0.120 simpleudcall 0.126 mandel 0.261 mandel2 0.344 ackermann(7) 0.195 ary(50000) 0.029 ary2(50000) 0.023 ary3(2000) 0.227
Process exited with code 137.
Output for 5.5.14
simple 0.163 simplecall 0.225 simpleucall 0.203 simpleudcall 0.264 mandel 0.408 mandel2 0.491 ackermann(7) 0.217 ary(50000) 0.043 ary2(50000) 0.033
Process exited with code 137.
Output for 5.5.13
simple 0.186 simplecall 0.242 simpleucall 0.207 simpleudcall 0.230 mandel 0.476 mandel2 0.622
Process exited with code 137.
Output for 5.5.12
simple 0.140 simplecall 0.171 simpleucall 0.166 simpleudcall 0.181 mandel 0.375 mandel2 0.392 ackermann(7) 0.159 ary(50000) 0.033 ary2(50000) 0.026 ary3(2000) 0.236
Process exited with code 137.
Output for 5.5.11
simple 0.171 simplecall 0.163 simpleucall 0.125 simpleudcall 0.130 mandel 0.282 mandel2 0.362 ackermann(7) 0.186 ary(50000) 0.041 ary2(50000) 0.032 ary3(2000) 0.268
Process exited with code 137.
Output for 5.5.10
simple 0.128 simplecall 0.133 simpleucall 0.129 simpleudcall 0.136 mandel 0.346 mandel2 0.416 ackermann(7) 0.140 ary(50000) 0.055 ary2(50000) 0.024 ary3(2000) 0.189
Process exited with code 137.
Output for 5.5.9
simple 0.142 simplecall 0.211 simpleucall 0.153 simpleudcall 0.171 mandel 0.378 mandel2 0.533 ackermann(7) 0.141 ary(50000) 0.028 ary2(50000) 0.020 ary3(2000) 0.193
Process exited with code 137.
Output for 5.5.8
simple 0.135 simplecall 0.128 simpleucall 0.122 simpleudcall 0.138 mandel 0.341 mandel2 0.387 ackermann(7) 0.149 ary(50000) 0.029 ary2(50000) 0.054 ary3(2000) 0.191
Process exited with code 137.
Output for 5.5.7
simple 0.128 simplecall 0.144 simpleucall 0.135 simpleudcall 0.164 mandel 0.323 mandel2 0.488 ackermann(7) 0.150 ary(50000) 0.030 ary2(50000) 0.026 ary3(2000) 0.244
Process exited with code 137.
Output for 5.5.6
simple 0.127 simplecall 0.189 simpleucall 0.181 simpleudcall 0.213 mandel 0.391 mandel2 0.500 ackermann(7) 0.241 ary(50000) 0.042 ary2(50000) 0.032
Process exited with code 137.
Output for 5.5.5
simple 0.151 simplecall 0.156 simpleucall 0.122 simpleudcall 0.125 mandel 0.314 mandel2 0.432 ackermann(7) 0.157 ary(50000) 0.033 ary2(50000) 0.025 ary3(2000) 0.194
Process exited with code 137.
Output for 5.5.4
simple 0.134 simplecall 0.138 simpleucall 0.140 simpleudcall 0.128 mandel 0.319 mandel2 0.489 ackermann(7) 0.227 ary(50000) 0.044 ary2(50000) 0.035 ary3(2000) 0.287
Process exited with code 137.
Output for 5.5.3
simple 0.148 simplecall 0.151 simpleucall 0.123 simpleudcall 0.125 mandel 0.327 mandel2 0.413 ackermann(7) 0.201 ary(50000) 0.032 ary2(50000) 0.021 ary3(2000) 0.177
Process exited with code 137.
Output for 5.5.2
simple 0.166 simplecall 0.208 simpleucall 0.171 simpleudcall 0.159 mandel 0.313 mandel2 0.408 ackermann(7) 0.169 ary(50000) 0.032 ary2(50000) 0.026 ary3(2000) 0.195
Process exited with code 137.
Output for 5.5.1
simple 0.139 simplecall 0.135 simpleucall 0.120 simpleudcall 0.136 mandel 0.302 mandel2 0.412 ackermann(7) 0.189 ary(50000) 0.053 ary2(50000) 0.053 ary3(2000) 0.237
Process exited with code 137.
Output for 5.5.0
simple 0.131 simplecall 0.129 simpleucall 0.125 simpleudcall 0.153 mandel 0.264 mandel2 0.410 ackermann(7) 0.153 ary(50000) 0.033 ary2(50000) 0.024 ary3(2000) 0.198 fibo(30) 0.383
Process exited with code 137.
Output for 5.4.45
simple 0.121 simplecall 0.163 simpleucall 0.145 simpleudcall 0.136 mandel 0.289 mandel2 0.459 ackermann(7) 0.230 ary(50000) 0.042 ary2(50000) 0.039 ary3(2000) 0.206
Process exited with code 137.
Output for 5.4.44
simple 0.161 simplecall 0.185 simpleucall 0.164 simpleudcall 0.190 mandel 0.328 mandel2 0.450 ackermann(7) 0.192 ary(50000) 0.048 ary2(50000) 0.040 ary3(2000) 0.200
Process exited with code 137.
Output for 5.4.43
simple 0.131 simplecall 0.168 simpleucall 0.169 simpleudcall 0.158 mandel 0.344 mandel2 0.401 ackermann(7) 0.162 ary(50000) 0.034 ary2(50000) 0.025 ary3(2000) 0.175
Process exited with code 137.
Output for 5.4.42
simple 0.132 simplecall 0.168 simpleucall 0.186 simpleudcall 0.201 mandel 0.304 mandel2 0.389 ackermann(7) 0.154 ary(50000) 0.028 ary2(50000) 0.026 ary3(2000) 0.191
Process exited with code 137.
Output for 5.4.41
simple 0.173 simplecall 0.175 simpleucall 0.157 simpleudcall 0.162 mandel 0.298 mandel2 0.488 ackermann(7) 0.209 ary(50000) 0.035 ary2(50000) 0.038 ary3(2000) 0.241
Process exited with code 137.
Output for 5.4.40
simple 0.183 simplecall 0.301 simpleucall 0.248 simpleudcall 0.257 mandel 0.451 mandel2 0.460
Process exited with code 137.
Output for 5.4.39
simple 0.170 simplecall 0.154 simpleucall 0.134 simpleudcall 0.130 mandel 0.312 mandel2 0.388 ackermann(7) 0.153 ary(50000) 0.033 ary2(50000) 0.030 ary3(2000) 0.201
Process exited with code 137.
Output for 5.4.38
simple 0.144 simplecall 0.144 simpleucall 0.133 simpleudcall 0.134 mandel 0.283 mandel2 0.407 ackermann(7) 0.160 ary(50000) 0.031 ary2(50000) 0.036 ary3(2000) 0.281
Process exited with code 137.
Output for 5.4.37
simple 0.146 simplecall 0.147 simpleucall 0.223 simpleudcall 0.140 mandel 0.276 mandel2 0.380 ackermann(7) 0.182 ary(50000) 0.032 ary2(50000) 0.029 ary3(2000) 0.194
Process exited with code 137.
Output for 5.4.36
simple 0.120 simplecall 0.130 simpleucall 0.131 simpleudcall 0.136 mandel 0.261 mandel2 0.431 ackermann(7) 0.156 ary(50000) 0.027 ary2(50000) 0.026 ary3(2000) 0.186
Process exited with code 137.
Output for 5.4.35
simple 0.221 simplecall 0.137 simpleucall 0.126 simpleudcall 0.164 mandel 0.319 mandel2 0.431 ackermann(7) 0.151 ary(50000) 0.031 ary2(50000) 0.039 ary3(2000) 0.303
Process exited with code 137.
Output for 5.4.34
simple 0.183 simplecall 0.229 simpleucall 0.131 simpleudcall 0.168 mandel 0.276 mandel2 0.356 ackermann(7) 0.136 ary(50000) 0.039 ary2(50000) 0.053 ary3(2000) 0.198
Process exited with code 137.
Output for 5.4.33
simple 0.145 simplecall 0.150 simpleucall 0.155 simpleudcall 0.190 mandel 0.283 mandel2 0.404 ackermann(7) 0.151 ary(50000) 0.043 ary2(50000) 0.039 ary3(2000) 0.236
Process exited with code 137.
Output for 5.4.32
simple 0.142 simplecall 0.220 simpleucall 0.224 simpleudcall 0.190 mandel 0.405 mandel2 0.517 ackermann(7) 0.234 ary(50000) 0.047 ary2(50000) 0.031
Process exited with code 137.
Output for 5.4.31
simple 0.145 simplecall 0.217 simpleucall 0.222 simpleudcall 0.225 mandel 0.368 mandel2 0.482 ackermann(7) 0.214 ary(50000) 0.030 ary2(50000) 0.026
Process exited with code 137.
Output for 5.4.30
simple 0.129 simplecall 0.193 simpleucall 0.164 simpleudcall 0.159 mandel 0.392 mandel2 0.382 ackermann(7) 0.150 ary(50000) 0.032 ary2(50000) 0.042 ary3(2000) 0.204
Process exited with code 137.
Output for 5.4.29
simple 0.163 simplecall 0.215 simpleucall 0.203 simpleudcall 0.209 mandel 0.384 mandel2 0.406 ackermann(7) 0.157 ary(50000) 0.031 ary2(50000) 0.030 ary3(2000) 0.198
Process exited with code 137.
Output for 5.4.28
simple 0.168 simplecall 0.134 simpleucall 0.143 simpleudcall 0.143 mandel 0.278 mandel2 0.385 ackermann(7) 0.146 ary(50000) 0.027 ary2(50000) 0.027 ary3(2000) 0.191
Process exited with code 137.
Output for 5.4.27
simple 0.129 simplecall 0.140 simpleucall 0.141 simpleudcall 0.137 mandel 0.263 mandel2 0.438 ackermann(7) 0.164 ary(50000) 0.033 ary2(50000) 0.029 ary3(2000) 0.195
Process exited with code 137.
Output for 5.4.26
simple 0.164 simplecall 0.263 simpleucall 0.190 simpleudcall 0.152 mandel 0.287 mandel2 0.376 ackermann(7) 0.188 ary(50000) 0.038 ary2(50000) 0.046 ary3(2000) 0.231
Process exited with code 137.
Output for 5.4.25
simple 0.141 simplecall 0.139 simpleucall 0.130 simpleudcall 0.140 mandel 0.373 mandel2 0.363 ackermann(7) 0.156 ary(50000) 0.031 ary2(50000) 0.027 ary3(2000) 0.200
Process exited with code 137.
Output for 5.4.24
simple 0.126 simplecall 0.145 simpleucall 0.187 simpleudcall 0.216 mandel 0.293 mandel2 0.452 ackermann(7) 0.169 ary(50000) 0.043 ary2(50000) 0.041 ary3(2000) 0.296
Process exited with code 137.
Output for 5.4.23
simple 0.206 simplecall 0.195 simpleucall 0.142 simpleudcall 0.139 mandel 0.319 mandel2 0.451 ackermann(7) 0.174 ary(50000) 0.045 ary2(50000) 0.037 ary3(2000) 0.284
Process exited with code 137.
Output for 5.4.22
simple 0.169 simplecall 0.161 simpleucall 0.134 simpleudcall 0.138 mandel 0.314 mandel2 0.401 ackermann(7) 0.160 ary(50000) 0.029 ary2(50000) 0.026 ary3(2000) 0.260
Process exited with code 137.
Output for 5.4.21
simple 0.123 simplecall 0.133 simpleucall 0.138 simpleudcall 0.197 mandel 0.325 mandel2 0.428 ackermann(7) 0.212 ary(50000) 0.046 ary2(50000) 0.042 ary3(2000) 0.302
Process exited with code 137.
Output for 5.4.20
simple 0.146 simplecall 0.158 simpleucall 0.166 simpleudcall 0.191 mandel 0.363 mandel2 0.358 ackermann(7) 0.184 ary(50000) 0.049 ary2(50000) 0.043 ary3(2000) 0.277
Process exited with code 137.
Output for 5.4.19
simple 0.202 simplecall 0.219 simpleucall 0.208 simpleudcall 0.185 mandel 0.370 mandel2 0.489 ackermann(7) 0.222 ary(50000) 0.031 ary2(50000) 0.030
Process exited with code 137.
Output for 5.4.18
simple 0.150 simplecall 0.136 simpleucall 0.140 simpleudcall 0.135 mandel 0.307 mandel2 0.381 ackermann(7) 0.170 ary(50000) 0.036 ary2(50000) 0.036 ary3(2000) 0.185
Process exited with code 137.
Output for 5.4.17
simple 0.125 simplecall 0.141 simpleucall 0.140 simpleudcall 0.142 mandel 0.280 mandel2 0.390 ackermann(7) 0.156 ary(50000) 0.028 ary2(50000) 0.026 ary3(2000) 0.176
Process exited with code 137.
Output for 5.4.16
simple 0.142 simplecall 0.145 simpleucall 0.134 simpleudcall 0.132 mandel 0.316 mandel2 0.416 ackermann(7) 0.163 ary(50000) 0.028 ary2(50000) 0.041 ary3(2000) 0.220
Process exited with code 137.
Output for 5.4.15
simple 0.163 simplecall 0.238 simpleucall 0.219 simpleudcall 0.130 mandel 0.297 mandel2 0.411 ackermann(7) 0.159 ary(50000) 0.028 ary2(50000) 0.028 ary3(2000) 0.184
Process exited with code 137.
Output for 5.4.14
simple 0.174 simplecall 0.155 simpleucall 0.155 simpleudcall 0.142 mandel 0.377 mandel2 0.587 ackermann(7) 0.150 ary(50000) 0.030 ary2(50000) 0.036 ary3(2000) 0.188
Process exited with code 137.
Output for 5.4.13
simple 0.135 simplecall 0.162 simpleucall 0.157 simpleudcall 0.144 mandel 0.322 mandel2 0.344 ackermann(7) 0.157 ary(50000) 0.030 ary2(50000) 0.027 ary3(2000) 0.196
Process exited with code 137.
Output for 5.4.12
simple 0.123 simplecall 0.171 simpleucall 0.213 simpleudcall 0.210 mandel 0.346 mandel2 0.378 ackermann(7) 0.189 ary(50000) 0.037 ary2(50000) 0.029 ary3(2000) 0.226
Process exited with code 137.
Output for 5.4.11
simple 0.124 simplecall 0.136 simpleucall 0.142 simpleudcall 0.137 mandel 0.342 mandel2 0.339 ackermann(7) 0.156 ary(50000) 0.031 ary2(50000) 0.037 ary3(2000) 0.184
Process exited with code 137.
Output for 5.4.10
simple 0.139 simplecall 0.190 simpleucall 0.207 simpleudcall 0.234 mandel 0.431 mandel2 0.497 ackermann(7) 0.149 ary(50000) 0.028 ary2(50000) 0.027
Process exited with code 137.
Output for 5.4.9
simple 0.125 simplecall 0.136 simpleucall 0.137 simpleudcall 0.145 mandel 0.368 mandel2 0.430 ackermann(7) 0.149 ary(50000) 0.036 ary2(50000) 0.034 ary3(2000) 0.217
Process exited with code 137.
Output for 5.4.8
simple 0.152 simplecall 0.168 simpleucall 0.130 simpleudcall 0.135 mandel 0.329 mandel2 0.400 ackermann(7) 0.156 ary(50000) 0.031 ary2(50000) 0.030 ary3(2000) 0.216
Process exited with code 137.
Output for 5.4.7
simple 0.169 simplecall 0.219 simpleucall 0.136 simpleudcall 0.142 mandel 0.290 mandel2 0.353 ackermann(7) 0.153 ary(50000) 0.031 ary2(50000) 0.027 ary3(2000) 0.205
Process exited with code 137.
Output for 5.4.6
simple 0.134 simplecall 0.144 simpleucall 0.144 simpleudcall 0.139 mandel 0.316 mandel2 0.365 ackermann(7) 0.183 ary(50000) 0.035 ary2(50000) 0.028 ary3(2000) 0.203
Process exited with code 137.
Output for 5.4.5
simple 0.141 simplecall 0.140 simpleucall 0.129 simpleudcall 0.168 mandel 0.327 mandel2 0.407 ackermann(7) 0.176 ary(50000) 0.029 ary2(50000) 0.027 ary3(2000) 0.197
Process exited with code 137.
Output for 5.4.4
simple 0.122 simplecall 0.142 simpleucall 0.148 simpleudcall 0.131 mandel 0.354 mandel2 0.437 ackermann(7) 0.206 ary(50000) 0.034 ary2(50000) 0.030 ary3(2000) 0.195
Process exited with code 137.
Output for 5.4.3
simple 0.131 simplecall 0.162 simpleucall 0.143 simpleudcall 0.197 mandel 0.439 mandel2 0.453 ackermann(7) 0.196 ary(50000) 0.042 ary2(50000) 0.031
Process exited with code 137.
Output for 5.4.2
simple 0.185 simplecall 0.234 simpleucall 0.153 simpleudcall 0.224 mandel 0.368 mandel2 0.588 ackermann(7) 0.176 ary(50000) 0.035 ary2(50000) 0.031
Process exited with code 137.
Output for 5.4.1
simple 0.125 simplecall 0.145 simpleucall 0.138 simpleudcall 0.141 mandel 0.412 mandel2 0.438 ackermann(7) 0.215 ary(50000) 0.044 ary2(50000) 0.041 ary3(2000) 0.279
Process exited with code 137.
Output for 5.4.0
simple 0.129 simplecall 0.174 simpleucall 0.135 simpleudcall 0.147 mandel 0.440 mandel2 0.371 ackermann(7) 0.164 ary(50000) 0.028 ary2(50000) 0.027 ary3(2000) 0.178
Process exited with code 137.

preferences:
269.55 ms | 401 KiB | 385 Q