buddylistgrapher

view performance.txt @ 16:dbaa8a943271

merge
author ju
date Thu, 05 Jul 2007 18:13:01 +0200
parents ccd2ab1bc9fd
children
line source
1 SLOCCOUNT
3 cpp: 125
4 sh: 52
5 sed: 52
10 SIZE
12 14K graph* (cpp)
13 1.8K graph2.sh* (sh)
14 1.8K graph3.sh* (sed)
19 PERFORMANCE
21 C++
23 $ time ./graph input.txt > output.txt
24 real 0m0.041s
25 user 0m0.040s
26 sys 0m0.000s
29 sh
31 $ time ./graph2.sh input.txt > output.txt
32 real 0m20.611s
33 user 0m5.332s
34 sys 0m14.357s
37 sed
39 $ time ./graph3.sh input.txt > output.txt
40 real 0m0.195s
41 user 0m0.168s
42 sys 0m0.016s