Mercurial > buddylistgrapher
comparison performance.txt @ 16:dbaa8a943271 default tip
merge
author | ju |
---|---|
date | Thu, 05 Jul 2007 18:13:01 +0200 |
parents | 98401a6717fc |
children |
comparison
equal
deleted
inserted
replaced
15:449b0fc9f764 | 16:dbaa8a943271 |
---|---|
1 SLOCCOUNT | |
2 | |
3 cpp: 125 | |
4 sh: 52 | |
5 sed: 52 | |
6 | |
7 | |
8 | |
9 | |
10 SIZE | |
11 | |
12 14K graph* (cpp) | |
13 1.8K graph2.sh* (sh) | |
14 1.8K graph3.sh* (sed) | |
15 | |
16 | |
17 | |
18 | |
19 PERFORMANCE | |
20 | |
21 C++ | |
22 | |
23 $ time ./graph input.txt > output.txt | |
24 real 0m0.041s | |
25 user 0m0.040s | |
26 sys 0m0.000s | |
27 | |
28 | |
29 sh | |
30 | |
31 $ time ./graph2.sh input.txt > output.txt | |
32 real 0m20.611s | |
33 user 0m5.332s | |
34 sys 0m14.357s | |
35 | |
36 | |
37 sed | |
38 | |
39 $ time ./graph3.sh input.txt > output.txt | |
40 real 0m0.195s | |
41 user 0m0.168s | |
42 sys 0m0.016s |