buddylistgrapher
changeset 8:98401a6717fc
updated performance.txt
author | meillo@marmaro.de |
---|---|
date | Sat, 09 Jun 2007 00:12:14 +0200 |
parents | ccd2ab1bc9fd |
children | 79af6ba23e46 |
files | performance.txt |
diffstat | 1 files changed, 24 insertions(+), 11 deletions(-) [+] |
line diff
1.1 --- a/performance.txt Sat Jun 09 00:07:04 2007 +0200 1.2 +++ b/performance.txt Sat Jun 09 00:12:14 2007 +0200 1.3 @@ -1,29 +1,42 @@ 1.4 SLOCCOUNT 1.5 1.6 cpp: 125 1.7 -sh: 33 1.8 +sh: 52 1.9 +sed: 52 1.10 1.11 1.12 1.13 1.14 SIZE 1.15 1.16 -14K graph* 1.17 -1.2K graph2.sh* 1.18 +14K graph* (cpp) 1.19 +1.8K graph2.sh* (sh) 1.20 +1.8K graph3.sh* (sed) 1.21 1.22 1.23 1.24 1.25 PERFORMANCE 1.26 1.27 -$ time ./graph input.txt > graph1.dot 1.28 +C++ 1.29 1.30 -real 0m0.074s 1.31 -user 0m0.044s 1.32 -sys 0m0.008s 1.33 +$ time ./graph input.txt > output.txt 1.34 + real 0m0.041s 1.35 + user 0m0.040s 1.36 + sys 0m0.000s 1.37 1.38 -$ time ./graph2.sh input.txt > graph2.dot 1.39 1.40 -real 0m38.405s 1.41 -user 0m13.861s 1.42 -sys 0m23.349s 1.43 +sh 1.44 + 1.45 +$ time ./graph2.sh input.txt > output.txt 1.46 + real 0m20.611s 1.47 + user 0m5.332s 1.48 + sys 0m14.357s 1.49 + 1.50 + 1.51 +sed 1.52 + 1.53 +$ time ./graph3.sh input.txt > output.txt 1.54 + real 0m0.195s 1.55 + user 0m0.168s 1.56 + sys 0m0.016s