forked from haskell/aeson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench.sh
executable file
·242 lines (197 loc) · 4.82 KB
/
bench.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#!/bin/sh
# Aeson Benchmark Runner
#######################################################################
# Configuration
#######################################################################
HC=ghc
SAVENAME="auto-$(git rev-parse --short HEAD)"
CONFIDENCE=0.99
RUNS=""
PATTERN=""
AESON_BENCH_DATADIR="benchmarks/json-data"
export AESON_BENCH_DATADIR
# usage
#######################################################################
usage() {
cat <<EOF
./bench.sh - Aeson benchmark runner
Usage: ./bench.sh [help|run|compare] [options]
help - print this message
-------------------------
./bench.sh help
run - run a benchmark suite
---------------------------
./bench.sh run [options]
Options:
-w HC, --with-compiler HC Compiler to use
-n NAME, --name NAME Name to save benchmark results as (current: $SAVENAME)
-p PATTERN, --pattern PATTERN Which benchmarks to run
--confidence CI Confidence interval (default: $CONFIDENCE)
build - only build a benchmark suite
-----------------------------------
./bench.sh build [options]
Options:
-w HC, --with-compiler HC Compiler to use
EOF
}
# "library"
#######################################################################
RED='\033[0;31m'
GREEN='\033[0;32m'
BLUE='\033[0;34m'
CYAN='\033[0;96m'
RESET='\033[0m' # No Color
putError() {
echo "${RED}ERROR:${RESET} $*"
}
putInfo() {
echo "${CYAN}INFO:${RESET} $*"
}
command() {
echo "${BLUE}RUN:${RESET} $*"
"$@"
exitcode=$?
if [ $exitcode -ne 0 ]; then
echo "${RED}FAIL:${RESET} $*"
exit 1
fi
}
# build
#######################################################################
cmdBuild() {
# Argument parsing
while [ $# -gt 0 ]; do
arg=$1
case $arg in
-w|--with-compiler)
HC=$2
shift
shift
;;
*)
putError "Unknown argument '$1'"
usage
exit 1
;;
esac
done
# Checking existence of tools
putInfo "Checking tools"
command cabal --version
# Building
putInfo "Building benchmarks"
command cabal build --project-file cabal.bench.project -w "$HC" aeson-benchmark-suite
}
# run
#######################################################################
cmdRun() {
# Argument parsing
while [ $# -gt 0 ]; do
arg=$1
case $arg in
-w|--with-compiler)
HC="$2"
shift
shift
;;
-n|--name)
SAVENAME="$2"
shift
shift
;;
-p|--pattern)
PATTERN="$2"
shift
shift
;;
--confidence)
CONFIDENCE="$2"
shift
shift
;;
*)
putError "Unknown argument '$1'"
usage
exit 1
;;
esac
done
CSV=".bench-results/${SAVENAME}.csv"
if [ -f "$CSV" ]; then
putError "$CSV already exists, aborting..."
exit 1
fi
# Checking if the target file exits
# Checking existence of tools
putInfo "Checking tools"
command cabal --version
command cabal-plan --version
# Building
putInfo "Building benchmarks"
command cabal build --project-file cabal.bench.project -w "$HC" aeson-benchmark-suite
# Running
putInfo "Running benchmarks: $SAVENAME"
command mkdir -p .bench-results
command "$(cabal-plan list-bin aeson-benchmark-suite)" --csv "$CSV" --ci "$CONFIDENCE" -m pattern "$PATTERN"
}
# compare
#######################################################################
cmdCompare() {
# Argument parsing
while [ $# -gt 0 ]; do
arg=$1
case $arg in
-w|--with-compiler)
HC=$2
shift
shift
;;
-n|--name)
SAVENAME=$2
shift
shift
;;
*)
RUNS="$RUNS $1"
shift
;;
esac
done
# Comparing th eresults
putInfo "Comparing runs:$RUNS"
# Map runs to CVS files
CSV=""
for run in $RUNS; do
CSV="$CSV .bench-results/${run}.csv"
done
# shellcheck disable=SC2086
command "criterion-cmp" $CSV
}
# main
#######################################################################
if [ $# -le 0 ]; then
usage
exit 1
fi
case $1 in
run)
shift;
cmdRun "$@"
;;
compare)
shift;
cmdCompare "$@"
;;
build)
shift;
cmdBuild "$@"
;;
help)
usage
;;
*)
putError "Unknown command '$1'"
usage
exit 1
;;
esac