mapnik/benchmark/run
2013-11-14 23:11:21 -08:00

17 lines
385 B
Bash
Executable file

#!/bin/sh
cd "$( dirname "${BASH_SOURCE[0]}" )"
cd ../
BASE=./benchmark/out
function run {
${BASE}/$1 --threads 0 --iterations $3;
${BASE}/$1 --threads $2 --iterations $(expr $3 / $2);
}
run test_png_encoding1 10 1000
run test_png_encoding2 10 50
run test_to_string1 10 100000
run test_to_string2 10 100000
run test_proj_transform1 10 100
run test_expression_parse 10 10000