#3 FINALY !!! objects-wiki.c compiles (with -Wall) and runs !
[svn/Cll1h/.git] / demos / performance / test-results
index ce895562d64f1c0cdd039f22b12504a2706ee1bc..ae344a736bfe550aca27662de843ee2b217da0c2 100644 (file)
@@ -1,4 +1,45 @@
-AMD Athlon(tm) XP 1259.487 Mhz 2522.30 bogomips
+AMD Athlon(tm) XP 1259.392 Mhz 2520.58 bogomips
+------------------------------------------------------------- Ruby
+#!/usr/bin/ruby
+
+10000000.times { print "stuff","\n" }
+
+Running...
+real   0m31.160s
+user   0m29.546s
+sys    0m1.548s
+--------------------------------------------------- Python - range
+#!/usr/bin/python
+
+for i in range(1,10000000):
+ print "stuff"
+
+Running...
+real   0m18.386s
+user   0m17.757s
+sys    0m0.308s
+-------------------------------------------------- Python - xrange
+#!/usr/bin/python
+
+for i in xrange(1,10000000):
+ print "stuff"
+
+Running...
+real   0m18.832s
+user   0m18.805s
+sys    0m0.024s
+------------------------------------------------------------ PHP 5
+#!/usr/bin/php5 -q
+<?php
+for ( $i=0; $i<10000000; $i++ )
+{
+ echo "stuff1\n";
+}
+?>
+Running...
+real   0m10.832s
+user   0m7.696s
+sys    0m2.544s
 -------------------------------------------------- C - gcc - write
 #include <string.h>
 
@@ -16,26 +57,26 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m1.102s
-user   0m0.212s
-sys    0m0.044s
+real   0m0.911s
+user   0m0.148s
+sys    0m0.036s
 Running...
-real   0m7.171s
-user   0m1.636s
-sys    0m5.536s
+real   0m5.809s
+user   0m2.164s
+sys    0m3.648s
 ------------------------------------------------------------- Perl
 #!/usr/bin/perl
 
 my $i=0;
 for ($i=0;$i<10000000;$i++)
 {
- print ("stuff");
+ print ("stuff\n");
 }
 
 Running...
-real   0m5.808s
-user   0m5.600s
-sys    0m0.012s
+real   0m7.095s
+user   0m6.836s
+sys    0m0.004s
 ----------------------------------------------- C<<1 - gcc - print
 #include "cll1.h"
 
@@ -45,13 +86,13 @@ program
   print("stuff");
 }
 Compiling...
-real   0m0.567s
-user   0m0.352s
-sys    0m0.028s
+real   0m0.521s
+user   0m0.304s
+sys    0m0.068s
 Running...
-real   0m2.122s
-user   0m2.112s
-sys    0m0.008s
+real   0m2.108s
+user   0m2.104s
+sys    0m0.004s
 ---------------------------------------------- C - g++ - std::cout
 #include <iostream>
 
@@ -66,13 +107,13 @@ int main()
  return 0;
 }
 Compiling...
-real   0m1.973s
-user   0m1.016s
-sys    0m0.100s
+real   0m1.917s
+user   0m0.896s
+sys    0m0.084s
 Running...
-real   0m1.763s
-user   0m1.752s
-sys    0m0.012s
+real   0m1.694s
+user   0m1.680s
+sys    0m0.016s
 ----------------------------------------------- C<<1 - tcc - print
 #include "cll1.h"
 
@@ -82,13 +123,13 @@ program
   print("stuff");
 }
 Compiling...
-real   0m0.148s
-user   0m0.020s
+real   0m0.125s
+user   0m0.016s
 sys    0m0.008s
 Running...
-real   0m2.259s
-user   0m2.252s
-sys    0m0.008s
+real   0m2.884s
+user   0m2.884s
+sys    0m0.000s
 ------------------------------------------------- C - tcc - printf
 #include <stdio.h>
 
@@ -103,13 +144,13 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.032s
+real   0m0.011s
 user   0m0.004s
-sys    0m0.008s
+sys    0m0.004s
 Running...
-real   0m1.924s
-user   0m1.924s
-sys    0m0.000s
+real   0m1.734s
+user   0m1.732s
+sys    0m0.004s
 ------------------------------------------------ C<<1 - tcc - echo
 #include "cll1.h"
 
@@ -124,9 +165,9 @@ real        0m0.021s
 user   0m0.016s
 sys    0m0.004s
 Running...
-real   0m1.109s
-user   0m1.104s
-sys    0m0.008s
+real   0m1.365s
+user   0m1.360s
+sys    0m0.004s
 --------------------------------------------------- C - tcc - puts
 #include <stdio.h>
 
@@ -141,12 +182,12 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.014s
-user   0m0.008s
-sys    0m0.008s
+real   0m0.016s
+user   0m0.012s
+sys    0m0.000s
 Running...
-real   0m1.152s
-user   0m1.144s
+real   0m1.115s
+user   0m1.108s
 sys    0m0.008s
 ------------------------------------------------- C - tcc - fwrite
 #include <stdio.h>
@@ -166,13 +207,13 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.013s
-user   0m0.012s
-sys    0m0.000s
+real   0m0.029s
+user   0m0.004s
+sys    0m0.008s
 Running...
-real   0m1.048s
-user   0m1.032s
-sys    0m0.016s
+real   0m1.025s
+user   0m1.020s
+sys    0m0.004s
 -------------------------------------------------- C - tcc - fputs
 #include <stdio.h>
 
@@ -188,12 +229,12 @@ int main (void)
 }
 Compiling...
 real   0m0.012s
-user   0m0.012s
-sys    0m0.000s
-Running...
-real   0m1.152s
-user   0m1.144s
+user   0m0.004s
 sys    0m0.008s
+Running...
+real   0m1.104s
+user   0m1.092s
+sys    0m0.012s
 ------------------------------------------------ C<<1 - gcc - echo
 #include "cll1.h"
 
@@ -204,13 +245,13 @@ program
   echo("stuff\n");
 }
 Compiling...
-real   0m0.351s
-user   0m0.308s
+real   0m0.362s
+user   0m0.320s
 sys    0m0.040s
 Running...
-real   0m1.243s
-user   0m1.236s
-sys    0m0.008s
+real   0m1.230s
+user   0m1.228s
+sys    0m0.004s
 ------------------------------------------------- C - gcc - printf
 #include <stdio.h>
 
@@ -225,13 +266,13 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.196s
-user   0m0.164s
-sys    0m0.032s
+real   0m0.184s
+user   0m0.148s
+sys    0m0.036s
 Running...
-real   0m1.106s
-user   0m1.104s
-sys    0m0.004s
+real   0m1.072s
+user   0m1.060s
+sys    0m0.012s
 --------------------------------------------------- C - gcc - puts
 #include <stdio.h>
 
@@ -246,13 +287,13 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.197s
-user   0m0.172s
-sys    0m0.028s
+real   0m0.182s
+user   0m0.152s
+sys    0m0.032s
 Running...
-real   0m1.105s
-user   0m1.084s
-sys    0m0.020s
+real   0m1.075s
+user   0m1.072s
+sys    0m0.000s
 ------------------------------------------------- C - gcc - fwrite
 #include <stdio.h>
 #include <string.h>
@@ -271,12 +312,12 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.216s
-user   0m0.188s
-sys    0m0.028s
+real   0m0.197s
+user   0m0.164s
+sys    0m0.032s
 Running...
-real   0m1.027s
-user   0m1.012s
+real   0m0.968s
+user   0m0.956s
 sys    0m0.012s
 -------------------------------------------------- C - gcc - fputs
 #include <stdio.h>
@@ -292,10 +333,10 @@ int main (void)
  return 0;
 }
 Compiling...
-real   0m0.199s
-user   0m0.152s
-sys    0m0.048s
+real   0m0.183s
+user   0m0.156s
+sys    0m0.028s
 Running...
-real   0m1.023s
-user   0m1.008s
-sys    0m0.016s
+real   0m0.970s
+user   0m0.964s
+sys    0m0.008s
This page took 0.335901 seconds and 4 git commands to generate.