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.013 simplecall 0.005 simpleucall 0.015 simpleudcall 0.018 mandel 0.125 mandel2 0.140 ackermann(7) 0.022 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.037 fibo(30) 0.066 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.025 matrix(20) 0.023 nestedloop(12) 0.053 sieve(30) 0.013 strcat(200000) 0.005 ------------------------ Total 0.579
Output for 8.3.5
simple 0.021 simplecall 0.008 simpleucall 0.027 simpleudcall 0.022 mandel 0.122 mandel2 0.135 ackermann(7) 0.021 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.037 fibo(30) 0.068 hash1(50000) 0.007 hash2(500) 0.013 heapsort(20000) 0.030 matrix(20) 0.026 nestedloop(12) 0.050 sieve(30) 0.013 strcat(200000) 0.006 ------------------------ Total 0.617
Output for 8.3.4
simple 0.014 simplecall 0.005 simpleucall 0.016 simpleudcall 0.018 mandel 0.119 mandel2 0.120 ackermann(7) 0.022 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.039 fibo(30) 0.077 hash1(50000) 0.010 hash2(500) 0.008 heapsort(20000) 0.027 matrix(20) 0.020 nestedloop(12) 0.026 sieve(30) 0.014 strcat(200000) 0.005 ------------------------ Total 0.552
Output for 8.3.3
simple 0.013 simplecall 0.005 simpleucall 0.019 simpleudcall 0.016 mandel 0.117 mandel2 0.136 ackermann(7) 0.021 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.036 fibo(30) 0.069 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.027 matrix(20) 0.022 nestedloop(12) 0.031 sieve(30) 0.013 strcat(200000) 0.005 ------------------------ Total 0.555
Output for 8.3.2
simple 0.007 simplecall 0.003 simpleucall 0.010 simpleudcall 0.009 mandel 0.071 mandel2 0.074 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.022 fibo(30) 0.036 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.011 nestedloop(12) 0.013 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.304
Output for 8.3.1
simple 0.007 simplecall 0.003 simpleucall 0.008 simpleudcall 0.009 mandel 0.069 mandel2 0.076 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.013 nestedloop(12) 0.018 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.304
Output for 8.3.0
simple 0.007 simplecall 0.003 simpleucall 0.010 simpleudcall 0.009 mandel 0.066 mandel2 0.068 ackermann(7) 0.011 ary(50000) 0.002 ary2(50000) 0.002 ary3(2000) 0.022 fibo(30) 0.036 hash1(50000) 0.004 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.011 nestedloop(12) 0.014 sieve(30) 0.007 strcat(200000) 0.002 ------------------------ Total 0.294
Output for 8.2.18
simple 0.019 simplecall 0.007 simpleucall 0.023 simpleudcall 0.017 mandel 0.135 mandel2 0.141 ackermann(7) 0.021 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.036 fibo(30) 0.066 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.027 matrix(20) 0.021 nestedloop(12) 0.032 sieve(30) 0.012 strcat(200000) 0.004 ------------------------ Total 0.589
Output for 8.2.17
simple 0.013 simplecall 0.006 simpleucall 0.027 simpleudcall 0.018 mandel 0.127 mandel2 0.132 ackermann(7) 0.021 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.036 fibo(30) 0.067 hash1(50000) 0.008 hash2(500) 0.007 heapsort(20000) 0.039 matrix(20) 0.022 nestedloop(12) 0.023 sieve(30) 0.012 strcat(200000) 0.005 ------------------------ Total 0.575
Output for 8.2.16
simple 0.013 simplecall 0.005 simpleucall 0.017 simpleudcall 0.016 mandel 0.118 mandel2 0.130 ackermann(7) 0.022 ary(50000) 0.007 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.020 nestedloop(12) 0.023 sieve(30) 0.012 strcat(200000) 0.005 ------------------------ Total 0.540
Output for 8.2.15
simple 0.018 simplecall 0.003 simpleucall 0.011 simpleudcall 0.009 mandel 0.070 mandel2 0.074 ackermann(7) 0.012 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.020 fibo(30) 0.036 hash1(50000) 0.004 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.013 nestedloop(12) 0.029 sieve(30) 0.007 strcat(200000) 0.003 ------------------------ Total 0.334
Output for 8.2.14
simple 0.018 simplecall 0.003 simpleucall 0.012 simpleudcall 0.009 mandel 0.071 mandel2 0.073 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.021 fibo(30) 0.037 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.012 nestedloop(12) 0.030 sieve(30) 0.007 strcat(200000) 0.002 ------------------------ Total 0.337
Output for 8.2.13
simple 0.018 simplecall 0.003 simpleucall 0.011 simpleudcall 0.010 mandel 0.072 mandel2 0.079 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.019 fibo(30) 0.036 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.014 matrix(20) 0.013 nestedloop(12) 0.028 sieve(30) 0.007 strcat(200000) 0.002 ------------------------ Total 0.338
Output for 8.2.12
simple 0.017 simplecall 0.003 simpleucall 0.011 simpleudcall 0.010 mandel 0.064 mandel2 0.070 ackermann(7) 0.011 ary(50000) 0.002 ary2(50000) 0.001 ary3(2000) 0.021 fibo(30) 0.036 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.319
Output for 8.2.11
simple 0.015 simplecall 0.005 simpleucall 0.017 simpleudcall 0.017 mandel 0.113 mandel2 0.105 ackermann(7) 0.021 ary(50000) 0.005 ary2(50000) 0.004 ary3(2000) 0.039 fibo(30) 0.066 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.032 nestedloop(12) 0.026 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.520
Output for 8.2.10
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.087 mandel2 0.078 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.021 matrix(20) 0.017 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.391
Output for 8.2.9
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.090 mandel2 0.097 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.029 fibo(30) 0.065 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.414
Output for 8.2.8
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.089 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.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.387
Output for 8.2.7
simple 0.009 simplecall 0.003 simpleucall 0.012 simpleudcall 0.015 mandel 0.096 mandel2 0.088 ackermann(7) 0.018 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.031 fibo(30) 0.056 hash1(50000) 0.006 hash2(500) 0.009 heapsort(20000) 0.021 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.416
Output for 8.2.6
simple 0.008 simplecall 0.003 simpleucall 0.011 simpleudcall 0.014 mandel 0.091 mandel2 0.082 ackermann(7) 0.015 ary(50000) 0.004 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.393
Output for 8.2.5
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.089 mandel2 0.078 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.030 fibo(30) 0.054 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.386
Output for 8.2.4
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.088 mandel2 0.077 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.020 matrix(20) 0.016 nestedloop(12) 0.014 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.085 mandel2 0.077 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.029 fibo(30) 0.057 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.020 matrix(20) 0.017 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.385
Output for 8.2.2
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.090 mandel2 0.082 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.020 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.391
Output for 8.2.1
simple 0.008 simplecall 0.003 simpleucall 0.011 simpleudcall 0.014 mandel 0.088 mandel2 0.081 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.036 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.394
Output for 8.2.0
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.087 mandel2 0.082 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.027 fibo(30) 0.054 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.385
Output for 8.1.28
simple 0.013 simplecall 0.005 simpleucall 0.020 simpleudcall 0.022 mandel 0.138 mandel2 0.143 ackermann(7) 0.028 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.048 fibo(30) 0.073 hash1(50000) 0.008 hash2(500) 0.009 heapsort(20000) 0.028 matrix(20) 0.022 nestedloop(12) 0.024 sieve(30) 0.013 strcat(200000) 0.005 ------------------------ Total 0.618
Output for 8.1.27
simple 0.007 simplecall 0.003 simpleucall 0.009 simpleudcall 0.010 mandel 0.078 mandel2 0.087 ackermann(7) 0.012 ary(50000) 0.002 ary2(50000) 0.003 ary3(2000) 0.020 fibo(30) 0.038 hash1(50000) 0.005 hash2(500) 0.004 heapsort(20000) 0.015 matrix(20) 0.013 nestedloop(12) 0.029 sieve(30) 0.008 strcat(200000) 0.003 ------------------------ Total 0.346
Output for 8.1.26
simple 0.007 simplecall 0.003 simpleucall 0.010 simpleudcall 0.010 mandel 0.075 mandel2 0.081 ackermann(7) 0.012 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.020 fibo(30) 0.037 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.003 ------------------------ Total 0.331
Output for 8.1.25
simple 0.007 simplecall 0.003 simpleucall 0.010 simpleudcall 0.010 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.003 ------------------------ Total 0.330
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.003 ary2(50000) 0.002 ary3(2000) 0.040 fibo(30) 0.067 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.023 matrix(20) 0.032 nestedloop(12) 0.035 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.526
Output for 8.1.23
simple 0.008 simplecall 0.004 simpleucall 0.012 simpleudcall 0.014 mandel 0.088 mandel2 0.081 ackermann(7) 0.015 ary(50000) 0.005 ary2(50000) 0.004 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.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.387
Output for 8.1.22
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.095 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.008 heapsort(20000) 0.023 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.397
Output for 8.1.21
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.096 mandel2 0.096 ackermann(7) 0.016 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.031 fibo(30) 0.061 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.025 matrix(20) 0.018 nestedloop(12) 0.017 sieve(30) 0.012 strcat(200000) 0.004 ------------------------ Total 0.435
Output for 8.1.20
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.092 mandel2 0.080 ackermann(7) 0.014 ary(50000) 0.003 ary2(50000) 0.003 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.016 nestedloop(12) 0.015 sieve(30) 0.012 strcat(200000) 0.004 ------------------------ Total 0.395
Output for 8.1.19
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.092 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.392
Output for 8.1.18
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.105 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.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.414
Output for 8.1.17
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.084 mandel2 0.081 ackermann(7) 0.014 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.028 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.378
Output for 8.1.16
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.015 mandel 0.080 mandel2 0.074 ackermann(7) 0.014 ary(50000) 0.003 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.004 ------------------------ Total 0.368
Output for 8.1.15
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.100 mandel2 0.095 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.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.413
Output for 8.1.14
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.097 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.009 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.1.13
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.081 mandel2 0.087 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.019 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.381
Output for 8.1.12
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.090 mandel2 0.076 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.021 matrix(20) 0.016 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.384
Output for 8.1.11
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.095 mandel2 0.096 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.030 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.411
Output for 8.1.10
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.097 mandel2 0.093 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.029 fibo(30) 0.054 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.022 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.408
Output for 8.1.9
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.090 mandel2 0.073 ackermann(7) 0.014 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.053 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.378
Output for 8.1.8
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.084 mandel2 0.081 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.007 heapsort(20000) 0.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.384
Output for 8.1.7
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.090 mandel2 0.084 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.020 matrix(20) 0.016 nestedloop(12) 0.015 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.391
Output for 8.1.6
simple 0.016 simplecall 0.005 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.039 fibo(30) 0.070 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.520
Output for 8.1.5
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.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.1.4
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.108 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.008 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.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.004 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.005 ------------------------ Total 0.520
Output for 8.1.2
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.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.1
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.039 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.518
Output for 8.1.0
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.108 mandel2 0.105 ackermann(7) 0.019 ary(50000) 0.004 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.516
Output for 8.0.30
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.085 mandel2 0.078 ackermann(7) 0.014 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.030 fibo(30) 0.058 hash1(50000) 0.005 hash2(500) 0.006 heapsort(20000) 0.018 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.383
Output for 8.0.29
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.091 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.400
Output for 8.0.28
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.092 mandel2 0.094 ackermann(7) 0.014 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.020 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.402
Output for 8.0.27
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.092 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.003 ------------------------ Total 0.398
Output for 8.0.26
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.093 mandel2 0.088 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.007 heapsort(20000) 0.021 matrix(20) 0.016 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.400
Output for 8.0.25
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.091 mandel2 0.073 ackermann(7) 0.015 ary(50000) 0.004 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.012 strcat(200000) 0.006 ------------------------ Total 0.385
Output for 8.0.24
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.093 mandel2 0.086 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.028 fibo(30) 0.055 hash1(50000) 0.006 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.017 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.399
Output for 8.0.23
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.090 mandel2 0.079 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.022 matrix(20) 0.021 nestedloop(12) 0.014 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.390
Output for 8.0.22
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.014 mandel 0.092 mandel2 0.089 ackermann(7) 0.015 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.029 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.399
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.021 nestedloop(12) 0.040 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.412
Output for 8.0.20
simple 0.008 simplecall 0.003 simpleucall 0.012 simpleudcall 0.013 mandel 0.091 mandel2 0.081 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.007 heapsort(20000) 0.021 matrix(20) 0.021 nestedloop(12) 0.017 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.397
Output for 8.0.19
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.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.524
Output for 8.0.18
simple 0.016 simplecall 0.006 simpleucall 0.017 simpleudcall 0.017 mandel 0.106 mandel2 0.107 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.520
Output for 8.0.17
simple 0.017 simplecall 0.006 simpleucall 0.017 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.518
Output for 8.0.16
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.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.520
Output for 8.0.15
simple 0.016 simplecall 0.005 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.073 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.14
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.039 fibo(30) 0.069 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.030 nestedloop(12) 0.028 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.515
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.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.024 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.519
Output for 8.0.12
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.013 strcat(200000) 0.004 ------------------------ Total 0.519
Output for 8.0.11
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.108 mandel2 0.106 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.039 fibo(30) 0.071 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.520
Output for 8.0.10
simple 0.016 simplecall 0.005 simpleucall 0.017 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.070 hash1(50000) 0.007 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.517
Output for 8.0.9
simple 0.016 simplecall 0.005 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.073 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.023 matrix(20) 0.030 nestedloop(12) 0.027 sieve(30) 0.013 strcat(200000) 0.004 ------------------------ Total 0.521
Output for 8.0.8
simple 0.012 simplecall 0.005 simpleucall 0.022 simpleudcall 0.024 mandel 0.151 mandel2 0.226 ackermann(7) 0.026 ary(50000) 0.009 ary2(50000) 0.007 ary3(2000) 0.048 fibo(30) 0.091 hash1(50000) 0.010 hash2(500) 0.011 heapsort(20000) 0.053 matrix(20) 0.042 nestedloop(12) 0.033 sieve(30) 0.025 strcat(200000) 0.010 ------------------------ Total 0.803
Output for 8.0.7
simple 0.016 simplecall 0.006 simpleucall 0.016 simpleudcall 0.017 mandel 0.107 mandel2 0.108 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.005 ------------------------ Total 0.521
Output for 8.0.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.039 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.517
Output for 8.0.5
simple 0.016 simplecall 0.006 simpleucall 0.017 simpleudcall 0.017 mandel 0.109 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.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.522
Output for 8.0.3
simple 0.016 simplecall 0.005 simpleucall 0.026 simpleudcall 0.025 mandel 0.196 mandel2 0.262 ackermann(7) 0.028 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.052 fibo(30) 0.103 hash1(50000) 0.014 hash2(500) 0.012 heapsort(20000) 0.036 matrix(20) 0.030 nestedloop(12) 0.023 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.866
Output for 8.0.2
simple 0.013 simplecall 0.005 simpleucall 0.022 simpleudcall 0.026 mandel 0.146 mandel2 0.233 ackermann(7) 0.025 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.046 fibo(30) 0.092 hash1(50000) 0.010 hash2(500) 0.010 heapsort(20000) 0.031 matrix(20) 0.026 nestedloop(12) 0.022 sieve(30) 0.015 strcat(200000) 0.005 ------------------------ Total 0.745
Output for 8.0.1
simple 0.017 simplecall 0.006 simpleucall 0.017 simpleudcall 0.019 mandel 0.114 mandel2 0.111 ackermann(7) 0.020 ary(50000) 0.004 ary2(50000) 0.004 ary3(2000) 0.042 fibo(30) 0.075 hash1(50000) 0.007 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.032 nestedloop(12) 0.028 sieve(30) 0.014 strcat(200000) 0.004 ------------------------ Total 0.546
Output for 8.0.0
simple 0.015 simplecall 0.005 simpleucall 0.023 simpleudcall 0.026 mandel 0.153 mandel2 0.188 ackermann(7) 0.026 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.048 fibo(30) 0.094 hash1(50000) 0.010 hash2(500) 0.012 heapsort(20000) 0.033 matrix(20) 0.027 nestedloop(12) 0.033 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.732
Output for 7.4.33
simple 0.016 simplecall 0.004 simpleucall 0.014 simpleudcall 0.016 mandel 0.098 mandel2 0.095 ackermann(7) 0.016 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.036 fibo(30) 0.063 hash1(50000) 0.007 hash2(500) 0.007 heapsort(20000) 0.023 matrix(20) 0.020 nestedloop(12) 0.033 sieve(30) 0.011 strcat(200000) 0.003 ------------------------ Total 0.465
Output for 7.4.32
simple 0.013 simplecall 0.004 simpleucall 0.014 simpleudcall 0.015 mandel 0.094 mandel2 0.088 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.030 fibo(30) 0.055 hash1(50000) 0.007 hash2(500) 0.007 heapsort(20000) 0.022 matrix(20) 0.018 nestedloop(12) 0.028 sieve(30) 0.010 strcat(200000) 0.004 ------------------------ Total 0.433
Output for 7.4.30
simple 0.014 simplecall 0.004 simpleucall 0.014 simpleudcall 0.016 mandel 0.092 mandel2 0.089 ackermann(7) 0.015 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.032 fibo(30) 0.055 hash1(50000) 0.007 hash2(500) 0.007 heapsort(20000) 0.021 matrix(20) 0.018 nestedloop(12) 0.027 sieve(30) 0.011 strcat(200000) 0.004 ------------------------ Total 0.432
Output for 7.4.29
simple 0.027 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.044 fibo(30) 0.070 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.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.108 mandel2 0.113 ackermann(7) 0.020 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.043 fibo(30) 0.070 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.572
Output for 7.4.27
simple 0.027 simplecall 0.008 simpleucall 0.021 simpleudcall 0.020 mandel 0.108 mandel2 0.112 ackermann(7) 0.019 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.045 fibo(30) 0.070 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.26
simple 0.026 simplecall 0.008 simpleucall 0.019 simpleudcall 0.019 mandel 0.108 mandel2 0.110 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.008 heapsort(20000) 0.024 matrix(20) 0.031 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.109 mandel2 0.111 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.044 fibo(30) 0.072 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.573
Output for 7.4.24
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.009 heapsort(20000) 0.024 matrix(20) 0.031 nestedloop(12) 0.046 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.569
Output for 7.4.23
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.108 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.22
simple 0.032 simplecall 0.011 simpleucall 0.030 simpleudcall 0.035 mandel 0.190 mandel2 0.277 ackermann(7) 0.035 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.068 fibo(30) 0.123 hash1(50000) 0.018 hash2(500) 0.014 heapsort(20000) 0.042 matrix(20) 0.055 nestedloop(12) 0.063 sieve(30) 0.023 strcat(200000) 0.008 ------------------------ Total 1.042
Output for 7.4.21
simple 0.032 simplecall 0.009 simpleucall 0.050 simpleudcall 0.049 mandel 0.190 mandel2 0.221 ackermann(7) 0.033 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.053 fibo(30) 0.090 hash1(50000) 0.015 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.037 nestedloop(12) 0.045 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.900
Output for 7.4.20
simple 0.027 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.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.16
simple 0.026 simplecall 0.007 simpleucall 0.025 simpleudcall 0.030 mandel 0.160 mandel2 0.191 ackermann(7) 0.024 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.052 fibo(30) 0.090 hash1(50000) 0.015 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.037 nestedloop(12) 0.046 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.786
Output for 7.4.15
simple 0.026 simplecall 0.008 simpleucall 0.024 simpleudcall 0.029 mandel 0.151 mandel2 0.191 ackermann(7) 0.028 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.054 fibo(30) 0.106 hash1(50000) 0.016 hash2(500) 0.012 heapsort(20000) 0.034 matrix(20) 0.039 nestedloop(12) 0.045 sieve(30) 0.017 strcat(200000) 0.006 ------------------------ Total 0.805
Output for 7.4.14
simple 0.026 simplecall 0.008 simpleucall 0.026 simpleudcall 0.028 mandel 0.176 mandel2 0.207 ackermann(7) 0.025 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.054 fibo(30) 0.098 hash1(50000) 0.016 hash2(500) 0.012 heapsort(20000) 0.035 matrix(20) 0.029 nestedloop(12) 0.049 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.830
Output for 7.4.13
simple 0.027 simplecall 0.008 simpleucall 0.027 simpleudcall 0.034 mandel 0.151 mandel2 0.191 ackermann(7) 0.028 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.054 fibo(30) 0.095 hash1(50000) 0.017 hash2(500) 0.010 heapsort(20000) 0.036 matrix(20) 0.047 nestedloop(12) 0.058 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.825
Output for 7.4.12
simple 0.027 simplecall 0.013 simpleucall 0.027 simpleudcall 0.031 mandel 0.202 mandel2 0.211 ackermann(7) 0.025 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.054 fibo(30) 0.096 hash1(50000) 0.015 hash2(500) 0.010 heapsort(20000) 0.035 matrix(20) 0.029 nestedloop(12) 0.058 sieve(30) 0.032 strcat(200000) 0.005 ------------------------ Total 0.889
Output for 7.4.11
simple 0.039 simplecall 0.012 simpleucall 0.038 simpleudcall 0.044 mandel 0.163 mandel2 0.236 ackermann(7) 0.026 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.055 fibo(30) 0.116 hash1(50000) 0.024 hash2(500) 0.016 heapsort(20000) 0.040 matrix(20) 0.055 nestedloop(12) 0.070 sieve(30) 0.025 strcat(200000) 0.009 ------------------------ Total 0.988
Output for 7.4.10
simple 0.026 simplecall 0.008 simpleucall 0.025 simpleudcall 0.029 mandel 0.166 mandel2 0.193 ackermann(7) 0.032 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.064 fibo(30) 0.134 hash1(50000) 0.025 hash2(500) 0.016 heapsort(20000) 0.054 matrix(20) 0.058 nestedloop(12) 0.075 sieve(30) 0.028 strcat(200000) 0.009 ------------------------ Total 0.961
Output for 7.4.9
simple 0.027 simplecall 0.008 simpleucall 0.024 simpleudcall 0.029 mandel 0.162 mandel2 0.224 ackermann(7) 0.025 ary(50000) 0.010 ary2(50000) 0.008 ary3(2000) 0.055 fibo(30) 0.104 hash1(50000) 0.017 hash2(500) 0.012 heapsort(20000) 0.035 matrix(20) 0.040 nestedloop(12) 0.056 sieve(30) 0.025 strcat(200000) 0.006 ------------------------ Total 0.869
Output for 7.4.8
simple 0.027 simplecall 0.008 simpleucall 0.027 simpleudcall 0.028 mandel 0.159 mandel2 0.197 ackermann(7) 0.027 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.060 fibo(30) 0.100 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.035 matrix(20) 0.040 nestedloop(12) 0.051 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.829
Output for 7.4.7
simple 0.027 simplecall 0.008 simpleucall 0.024 simpleudcall 0.028 mandel 0.154 mandel2 0.190 ackermann(7) 0.028 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.057 fibo(30) 0.094 hash1(50000) 0.019 hash2(500) 0.012 heapsort(20000) 0.034 matrix(20) 0.041 nestedloop(12) 0.049 sieve(30) 0.018 strcat(200000) 0.007 ------------------------ Total 0.806
Output for 7.4.6
simple 0.026 simplecall 0.008 simpleucall 0.024 simpleudcall 0.027 mandel 0.154 mandel2 0.194 ackermann(7) 0.024 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.052 fibo(30) 0.093 hash1(50000) 0.015 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.028 nestedloop(12) 0.046 sieve(30) 0.016 strcat(200000) 0.006 ------------------------ Total 0.770
Output for 7.4.5
simple 0.019 simplecall 0.006 simpleucall 0.013 simpleudcall 0.014 mandel 0.077 mandel2 0.083 ackermann(7) 0.014 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.032 fibo(30) 0.051 hash1(50000) 0.006 hash2(500) 0.006 heapsort(20000) 0.018 matrix(20) 0.022 nestedloop(12) 0.033 sieve(30) 0.010 strcat(200000) 0.003 ------------------------ Total 0.412
Output for 7.4.4
simple 0.027 simplecall 0.008 simpleucall 0.026 simpleudcall 0.031 mandel 0.183 mandel2 0.250 ackermann(7) 0.039 ary(50000) 0.014 ary2(50000) 0.011 ary3(2000) 0.055 fibo(30) 0.099 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.037 matrix(20) 0.043 nestedloop(12) 0.054 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 0.935
Output for 7.4.3
simple 0.026 simplecall 0.008 simpleucall 0.024 simpleudcall 0.028 mandel 0.154 mandel2 0.208 ackermann(7) 0.026 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.059 fibo(30) 0.105 hash1(50000) 0.016 hash2(500) 0.010 heapsort(20000) 0.035 matrix(20) 0.029 nestedloop(12) 0.048 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.820
Output for 7.4.0
simple 0.036 simplecall 0.006 simpleucall 0.018 simpleudcall 0.021 mandel 0.190 mandel2 0.174 ackermann(7) 0.030 ary(50000) 0.005 ary2(50000) 0.004 ary3(2000) 0.038 fibo(30) 0.092 hash1(50000) 0.011 hash2(500) 0.009 heapsort(20000) 0.032 matrix(20) 0.032 nestedloop(12) 0.059 sieve(30) 0.015 strcat(200000) 0.006 ------------------------ Total 0.779
Output for 7.3.33
simple 0.029 simplecall 0.009 simpleucall 0.020 simpleudcall 0.021 mandel 0.119 mandel2 0.131 ackermann(7) 0.024 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.061 fibo(30) 0.080 hash1(50000) 0.009 hash2(500) 0.009 heapsort(20000) 0.026 matrix(20) 0.030 nestedloop(12) 0.054 sieve(30) 0.018 strcat(200000) 0.006 ------------------------ Total 0.655
Output for 7.3.32
simple 0.027 simplecall 0.008 simpleucall 0.020 simpleudcall 0.020 mandel 0.110 mandel2 0.128 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.049 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.603
Output for 7.3.31
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.020 mandel 0.108 mandel2 0.124 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.048 sieve(30) 0.015 strcat(200000) 0.005 ------------------------ Total 0.593
Output for 7.3.30
simple 0.027 simplecall 0.008 simpleucall 0.019 simpleudcall 0.019 mandel 0.108 mandel2 0.126 ackermann(7) 0.019 ary(50000) 0.005 ary2(50000) 0.003 ary3(2000) 0.047 fibo(30) 0.073 hash1(50000) 0.009 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.029 nestedloop(12) 0.049 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.594
Output for 7.3.29
simple 0.071 simplecall 0.011 simpleucall 0.027 simpleudcall 0.029 mandel 0.212 mandel2 0.222 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.007 ary3(2000) 0.063 fibo(30) 0.098 hash1(50000) 0.015 hash2(500) 0.012 heapsort(20000) 0.032 matrix(20) 0.035 nestedloop(12) 0.067 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.961
Output for 7.3.28
simple 0.076 simplecall 0.011 simpleucall 0.028 simpleudcall 0.035 mandel 0.234 mandel2 0.215 ackermann(7) 0.026 ary(50000) 0.008 ary2(50000) 0.007 ary3(2000) 0.066 fibo(30) 0.102 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.034 nestedloop(12) 0.071 sieve(30) 0.021 strcat(200000) 0.008 ------------------------ Total 1.004
Output for 7.3.27
simple 0.072 simplecall 0.011 simpleucall 0.024 simpleudcall 0.028 mandel 0.217 mandel2 0.213 ackermann(7) 0.026 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.090 fibo(30) 0.139 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.029 nestedloop(12) 0.071 sieve(30) 0.020 strcat(200000) 0.007 ------------------------ Total 1.024
Output for 7.3.26
simple 0.075 simplecall 0.011 simpleucall 0.024 simpleudcall 0.030 mandel 0.213 mandel2 0.215 ackermann(7) 0.027 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.061 fibo(30) 0.105 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.032 matrix(20) 0.029 nestedloop(12) 0.071 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.964
Output for 7.3.25
simple 0.046 simplecall 0.010 simpleucall 0.023 simpleudcall 0.028 mandel 0.197 mandel2 0.214 ackermann(7) 0.026 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.056 fibo(30) 0.110 hash1(50000) 0.016 hash2(500) 0.014 heapsort(20000) 0.039 matrix(20) 0.036 nestedloop(12) 0.135 sieve(30) 0.020 strcat(200000) 0.007 ------------------------ Total 0.994
Output for 7.3.24
simple 0.094 simplecall 0.016 simpleucall 0.040 simpleudcall 0.047 mandel 0.274 mandel2 0.260 ackermann(7) 0.041 ary(50000) 0.026 ary2(50000) 0.010 ary3(2000) 0.078 fibo(30) 0.140 hash1(50000) 0.019 hash2(500) 0.021 heapsort(20000) 0.051 matrix(20) 0.054 nestedloop(12) 0.077 sieve(30) 0.022 strcat(200000) 0.007 ------------------------ Total 1.277
Output for 7.3.23
simple 0.074 simplecall 0.011 simpleucall 0.024 simpleudcall 0.028 mandel 0.205 mandel2 0.217 ackermann(7) 0.026 ary(50000) 0.010 ary2(50000) 0.007 ary3(2000) 0.056 fibo(30) 0.112 hash1(50000) 0.023 hash2(500) 0.012 heapsort(20000) 0.033 matrix(20) 0.031 nestedloop(12) 0.072 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.967
Output for 7.3.21
simple 0.074 simplecall 0.011 simpleucall 0.028 simpleudcall 0.031 mandel 0.216 mandel2 0.225 ackermann(7) 0.027 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.063 fibo(30) 0.107 hash1(50000) 0.018 hash2(500) 0.011 heapsort(20000) 0.038 matrix(20) 0.037 nestedloop(12) 0.071 sieve(30) 0.024 strcat(200000) 0.006 ------------------------ Total 1.007
Output for 7.3.20
simple 0.035 simplecall 0.011 simpleucall 0.027 simpleudcall 0.032 mandel 0.223 mandel2 0.230 ackermann(7) 0.029 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.064 fibo(30) 0.106 hash1(50000) 0.017 hash2(500) 0.012 heapsort(20000) 0.034 matrix(20) 0.032 nestedloop(12) 0.137 sieve(30) 0.024 strcat(200000) 0.007 ------------------------ Total 1.038
Output for 7.3.19
simple 0.097 simplecall 0.017 simpleucall 0.040 simpleudcall 0.046 mandel 0.305 mandel2 0.303 ackermann(7) 0.040 ary(50000) 0.014 ary2(50000) 0.010 ary3(2000) 0.098 fibo(30) 0.146 hash1(50000) 0.024 hash2(500) 0.017 heapsort(20000) 0.051 matrix(20) 0.048 nestedloop(12) 0.092 sieve(30) 0.032 strcat(200000) 0.010 ------------------------ Total 1.390
Output for 7.3.18
simple 0.091 simplecall 0.016 simpleucall 0.042 simpleudcall 0.041 mandel 0.232 mandel2 0.275 ackermann(7) 0.028 ary(50000) 0.010 ary2(50000) 0.008 ary3(2000) 0.058 fibo(30) 0.101 hash1(50000) 0.017 hash2(500) 0.010 heapsort(20000) 0.031 matrix(20) 0.029 nestedloop(12) 0.069 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 1.084
Output for 7.3.17
simple 0.079 simplecall 0.013 simpleucall 0.032 simpleudcall 0.030 mandel 0.275 mandel2 0.224 ackermann(7) 0.027 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.058 fibo(30) 0.103 hash1(50000) 0.017 hash2(500) 0.010 heapsort(20000) 0.034 matrix(20) 0.032 nestedloop(12) 0.071 sieve(30) 0.021 strcat(200000) 0.007 ------------------------ Total 1.051
Output for 7.3.16
simple 0.079 simplecall 0.012 simpleucall 0.024 simpleudcall 0.029 mandel 0.214 mandel2 0.221 ackermann(7) 0.026 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.064 fibo(30) 0.106 hash1(50000) 0.017 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.034 nestedloop(12) 0.073 sieve(30) 0.020 strcat(200000) 0.007 ------------------------ Total 0.984
Output for 7.2.33
simple 0.076 simplecall 0.017 simpleucall 0.034 simpleudcall 0.033 mandel 0.189 mandel2 0.178 ackermann(7) 0.030 ary(50000) 0.010 ary2(50000) 0.008 ary3(2000) 0.083 fibo(30) 0.126 hash1(50000) 0.017 hash2(500) 0.012 heapsort(20000) 0.032 matrix(20) 0.042 nestedloop(12) 0.138 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 1.054
Output for 7.2.32
simple 0.077 simplecall 0.012 simpleucall 0.030 simpleudcall 0.033 mandel 0.175 mandel2 0.187 ackermann(7) 0.030 ary(50000) 0.011 ary2(50000) 0.008 ary3(2000) 0.067 fibo(30) 0.126 hash1(50000) 0.018 hash2(500) 0.013 heapsort(20000) 0.039 matrix(20) 0.034 nestedloop(12) 0.076 sieve(30) 0.023 strcat(200000) 0.007 ------------------------ Total 0.964
Output for 7.2.31
simple 0.092 simplecall 0.019 simpleucall 0.049 simpleudcall 0.057 mandel 0.231 mandel2 0.281 ackermann(7) 0.048 ary(50000) 0.015 ary2(50000) 0.010 ary3(2000) 0.121 fibo(30) 0.160 hash1(50000) 0.025 hash2(500) 0.021 heapsort(20000) 0.058 matrix(20) 0.052 nestedloop(12) 0.189 sieve(30) 0.038 strcat(200000) 0.013 ------------------------ Total 1.480
Output for 7.2.30
simple 0.085 simplecall 0.012 simpleucall 0.031 simpleudcall 0.034 mandel 0.170 mandel2 0.181 ackermann(7) 0.031 ary(50000) 0.010 ary2(50000) 0.008 ary3(2000) 0.072 fibo(30) 0.124 hash1(50000) 0.021 hash2(500) 0.012 heapsort(20000) 0.036 matrix(20) 0.033 nestedloop(12) 0.136 sieve(30) 0.024 strcat(200000) 0.008 ------------------------ Total 1.028
Output for 7.2.29
simple 0.083 simplecall 0.013 simpleucall 0.031 simpleudcall 0.033 mandel 0.174 mandel2 0.182 ackermann(7) 0.035 ary(50000) 0.011 ary2(50000) 0.007 ary3(2000) 0.071 fibo(30) 0.115 hash1(50000) 0.018 hash2(500) 0.012 heapsort(20000) 0.037 matrix(20) 0.033 nestedloop(12) 0.077 sieve(30) 0.027 strcat(200000) 0.007 ------------------------ Total 0.968
Output for 7.2.6
simple 0.026 simplecall 0.007 simpleucall 0.020 simpleudcall 0.022 mandel 0.086 mandel2 0.094 ackermann(7) 0.019 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.044 fibo(30) 0.067 hash1(50000) 0.009 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.022 nestedloop(12) 0.041 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.511
Output for 7.2.0
simple 0.030 simplecall 0.007 simpleucall 0.024 simpleudcall 0.024 mandel 0.088 mandel2 0.109 ackermann(7) 0.022 ary(50000) 0.004 ary2(50000) 0.002 ary3(2000) 0.053 fibo(30) 0.073 hash1(50000) 0.011 hash2(500) 0.009 heapsort(20000) 0.024 matrix(20) 0.027 nestedloop(12) 0.046 sieve(30) 0.017 strcat(200000) 0.005 ------------------------ Total 0.578
Output for 7.1.20
simple 0.025 simplecall 0.007 simpleucall 0.021 simpleudcall 0.023 mandel 0.087 mandel2 0.099 ackermann(7) 0.021 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.051 fibo(30) 0.088 hash1(50000) 0.011 hash2(500) 0.008 heapsort(20000) 0.021 matrix(20) 0.022 nestedloop(12) 0.040 sieve(30) 0.016 strcat(200000) 0.004 ------------------------ Total 0.552
Output for 7.1.10
simple 0.033 simplecall 0.009 simpleucall 0.032 simpleudcall 0.044 mandel 0.105 mandel2 0.100 ackermann(7) 0.021 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.050 fibo(30) 0.108 hash1(50000) 0.014 hash2(500) 0.009 heapsort(20000) 0.041 matrix(20) 0.035 nestedloop(12) 0.047 sieve(30) 0.026 strcat(200000) 0.007 ------------------------ Total 0.685
Output for 7.1.7
simple 0.024 simplecall 0.008 simpleucall 0.023 simpleudcall 0.024 mandel 0.088 mandel2 0.092 ackermann(7) 0.020 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.045 fibo(30) 0.083 hash1(50000) 0.011 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.023 nestedloop(12) 0.042 sieve(30) 0.015 strcat(200000) 0.004 ------------------------ Total 0.538
Output for 7.1.6
simple 0.039 simplecall 0.012 simpleucall 0.034 simpleudcall 0.033 mandel 0.101 mandel2 0.107 ackermann(7) 0.029 ary(50000) 0.004 ary2(50000) 0.003 ary3(2000) 0.051 fibo(30) 0.106 hash1(50000) 0.013 hash2(500) 0.009 heapsort(20000) 0.025 matrix(20) 0.030 nestedloop(12) 0.049 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.669
Output for 7.1.5
simple 0.032 simplecall 0.009 simpleucall 0.027 simpleudcall 0.028 mandel 0.089 mandel2 0.088 ackermann(7) 0.021 ary(50000) 0.003 ary2(50000) 0.002 ary3(2000) 0.045 fibo(30) 0.081 hash1(50000) 0.011 hash2(500) 0.008 heapsort(20000) 0.022 matrix(20) 0.023 nestedloop(12) 0.041 sieve(30) 0.016 strcat(200000) 0.004 ------------------------ Total 0.551
Output for 7.0.20
simple 0.031 simplecall 0.011 simpleucall 0.026 simpleudcall 0.028 mandel 0.096 mandel2 0.113 ackermann(7) 0.030 ary(50000) 0.005 ary2(50000) 0.004 ary3(2000) 0.074 fibo(30) 0.109 hash1(50000) 0.012 hash2(500) 0.010 heapsort(20000) 0.031 matrix(20) 0.044 nestedloop(12) 0.054 sieve(30) 0.025 strcat(200000) 0.005 ------------------------ Total 0.708

preferences:
162.32 ms | 402 KiB | 148 Q