facelift, reordered results
[svn/Cll1h/.git] / demos / performance / test-results
1 #!/usr/bin/ruby
2
3 10000000.times { print "stuff","\n" }
4 Running...0:16.51 total, 14.79 user, 1.51 sys, 0 KB average size
5
6 #!/usr/bin/python
7
8 for i in range(1,10000000):
9 print "stuff"
10
11 Running...0:09.04 total, 8.58 user, 0.20 sys, 0 KB average size
12
13 #!/usr/bin/python
14
15 for i in xrange(1,10000000):
16 print "stuff"
17
18 Running...0:08.22 total, 8.15 user, 0.00 sys, 0 KB average size
19
20 #!/usr/bin/php5 -q
21 <?php
22 for ( $i=0; $i<10000000; $i++ )
23 {
24 echo "stuff1\n";
25 }
26 ?>
27 Running...0:07.13 total, 5.00 user, 2.10 sys, 0 KB average size
28
29 #!/usr/bin/perl
30
31 my $i=0;
32 for ($i=0;$i<10000000;$i++)
33 {
34 print ("stuff");
35 }
36
37 Running...0:02.52 total, 2.50 user, 0.00 sys, 0 KB average size
38
39 #include <iostream>
40
41 #define RUNS 10000000UL
42 int main()
43 {
44 unsigned long i;
45 for (i=0;i<RUNS;i++) {
46 std::cout << "stuff\n";
47 }
48 return 0;
49 }
50 Compiling...0:00.37 total, 0.32 user, 0.04 sys, 0 KB average size
51 Running...0:01.00 total, 1.00 user, 0.00 sys, 0 KB average size
52
53 #include "cll1.h"
54
55 program
56 {
57 repeat(10000000)
58 print("stuff");
59 }
60 Compiling...0:00.09 total, 0.07 user, 0.02 sys, 0 KB average size
61 Running...0:00.88 total, 0.88 user, 0.00 sys, 0 KB average size
62
63 #include <stdio.h>
64
65 #define RUNS 10000000UL
66 int main (void)
67 {
68 unsigned long i;
69 for (i=0;i<RUNS;i++) {
70 printf("stuff\n");
71 }
72 return 0;
73 }
74 Compiling...0:00.05 total, 0.04 user, 0.00 sys, 0 KB average size
75 Running...0:00.67 total, 0.65 user, 0.02 sys, 0 KB average size
76
77 #include <stdio.h>
78
79 #define RUNS 10000000UL
80 int main (void)
81 {
82 unsigned long i;
83 for (i=0;i<RUNS;i++) {
84 puts("stuff");
85 }
86 return 0;
87 }
88 Compiling...0:00.09 total, 0.06 user, 0.02 sys, 0 KB average size
89 Running...0:00.62 total, 0.62 user, 0.00 sys, 0 KB average size
90
91 #include <stdio.h>
92
93 #define RUNS 10000000UL
94 int main (void)
95 {
96 unsigned long i;
97 for (i=0;i<RUNS;i++) {
98 fputs("stuff\n",stdout);
99 }
100 return 0;
101 }
102 Compiling...0:00.06 total, 0.05 user, 0.00 sys, 0 KB average size
103 Running...0:00.55 total, 0.55 user, 0.00 sys, 0 KB average size
This page took 0.35508 seconds and 4 git commands to generate.