mirror of
https://github.com/crioux/turbo-linecount.git
synced 2024-10-27 17:24:01 +00:00
Merge b9a65a1269
into 9bf2210d40
This commit is contained in:
commit
be62a558c9
@ -1,6 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$1" = "" ]; then
|
||||
export TIME='real\t %e'
|
||||
|
||||
if [ "$1" = "" ]; then
|
||||
echo "specify path to tlc binary"
|
||||
exit 1
|
||||
else
|
||||
@ -9,7 +11,6 @@ fi
|
||||
|
||||
tlctest()
|
||||
{
|
||||
|
||||
OUT=`(time $TLC $1) 2>&1 | grep real | cut -f 2 | cut -c 3-`
|
||||
echo "tlc: $1 $OUT"
|
||||
return 0
|
||||
@ -24,7 +25,7 @@ wctest()
|
||||
|
||||
pythontest()
|
||||
{
|
||||
OUT=`(time echo "print str(sum(1 for line in open('$1'))) + ' $1'" | python) 2>&1 | grep real | cut -f 2 | cut -c 3-`
|
||||
OUT=`(time python -c "print str(sum(1 for line in open('$1'))) + ' $1'") 2>&1 | grep real | cut -f 2 | cut -c 3-`
|
||||
echo "python: $1 $OUT"
|
||||
return 0
|
||||
}
|
||||
@ -36,7 +37,7 @@ tlctest test_1GB.txt
|
||||
tlctest test_10GB.txt
|
||||
|
||||
echo Timing for 'python'
|
||||
pythontest test_10MB.txt
|
||||
pythontest test_10MB.txt
|
||||
pythontest test_100MB.txt
|
||||
pythontest test_1GB.txt
|
||||
pythontest test_10GB.txt
|
||||
|
Loading…
Reference in New Issue
Block a user