/srv/osrm/osrm-backend/third_party/libosmium/benchmarks
NameSizeModeActions
CMakeLists.txt16820644editdlrm
download_data.sh7090755editdlrm
osmium_benchmark_count.cpp12660644editdlrm
osmium_benchmark_count_tag.cpp12800644editdlrm
osmium_benchmark_index_map.cpp13040644editdlrm
osmium_benchmark_mercator.cpp10310644editdlrm
osmium_benchmark_static_vs_dynamic_index.cpp59090644editdlrm
osmium_benchmark_write_pbf.cpp10710644editdlrm
README.md14760644editdlrm
run_benchmarks.sh2190755editdlrm
run_benchmark_count.sh5320755editdlrm
run_benchmark_count_tag.sh5400755editdlrm
run_benchmark_index_map.sh8270755editdlrm
run_benchmark_mercator.sh5380755editdlrm
run_benchmark_static_vs_dynamic_index.sh3930755editdlrm
run_benchmark_write_pbf.sh8660755editdlrm
setup.sh10380755editdlrm
Edit: /srv/osrm/osrm-backend/third_party/libosmium/benchmarks/run_benchmark_write_pbf.sh (866B)
#!/bin/sh # # run_benchmark_write_pbf.sh # # Will read the input file and after reading it into memory completely, # write it to /dev/null. Because this will need the time to read *and* write # the file, it will report the times for reading and writing. You can # subtract the times needed for the "count" benchmark to (roughly) get the # write times. # set -e BENCHMARK_NAME=write_pbf . @CMAKE_BINARY_DIR@/benchmarks/setup.sh CMD=$OB_DIR/osmium_benchmark_$BENCHMARK_NAME echo "# file size num mem time cpu_kernel cpu_user cpu_percent cmd options" for data in $OB_DATA_FILES; do filename=`basename $data` filesize=`stat --format="%s" --dereference $data` for n in $OB_SEQ; do $OB_TIME_CMD -f "$filename $filesize $n $OB_TIME_FORMAT" $CMD $data /dev/null 2>&1 >/dev/null | sed -e "s%$DATA_DIR/%%" | sed -e "s%$OB_DIR/%%" done done