benches: introduces bench_markdown script
[nit.git] / benchmarks / markdown / bench_markdown.sh
1 #!/bin/bash
2 # This file is part of NIT ( http://www.nitlanguage.org ).
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # Shell script to bench nitmd over different kind of document.
17
18 source ../bench_common.sh
19 source ../bench_plot.sh
20
21 ## CONFIGURATION OPTIONS ##
22
23 # Default number of times a command must be run with bench_command
24 # Can be overrided with 'the option -n'
25 count=2
26
27 ### HELPER FUNCTIONS ##
28
29 function die()
30 {
31 echo >&2 "error: $*"
32 died=1
33 }
34
35 ## HANDLE OPTIONS ##
36
37 function usage()
38 {
39 echo "run_bench: [options]* benchname"
40 echo " -v: verbose mode"
41 echo " -n count: number of execution for each bar (default: $count)"
42 echo " --dry: Do not run the commands, just reuse the data and generate the graph"
43 echo " -h: this help"
44 }
45
46 stop=false
47 while [ "$stop" = false ]; do
48 case "$1" in
49 -v) verbose=true; shift;;
50 -h) usage; exit;;
51 -n) count="$2"; shift; shift;;
52 --dry) dry_run=true; shift;;
53 *) stop=true
54 esac
55 done
56
57 ## GEN BENCHES
58 cd benches; make; cd ..
59
60 ## COMPILE ENGINES
61 cd engines; make; cd ..
62
63 NOTSKIPED="$*"
64
65 if test -z "$NOTSKIPED"; then
66 usage
67 echo "List of available benches:"
68 echo "* all: run all the benches"
69 fi
70
71 ## EFFECTIVE BENCHS ##
72 outdir="./out"
73 engdir="./engines"
74 bncdir="./benches/out"
75 mkdir -p $outdir
76
77 s=50
78
79 if test "$#" -gt 0; then
80 plot $outdir/bench_markdown.gnu
81 fi
82
83 if test -n "$died"; then
84 echo "Some commands failed"
85 exit 1
86 fi
87 exit 0