-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathbench.sh
executable file
·292 lines (261 loc) · 11 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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#!/bin/bash
# download the code and all its dependencies
_go_get() {
# Note: keep "github.com/ugorji/go/codec" in quotes, as script pushing to github will replace it appropriately
${go[@]} get -u \
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"/codecgen \
github.com/tinylib/msgp/msgp github.com/tinylib/msgp \
github.com/pquerna/ffjson/ffjson github.com/pquerna/ffjson \
github.com/Sereal/Sereal/Go/sereal \
bitbucket.org/bodhisnarkva/cbor/go \
github.com/davecgh/go-xdr/xdr2 \
gopkg.in/mgo.v2/bson \
gopkg.in/vmihailenco/msgpack.v2 \
github.com/json-iterator/go \
go.mongodb.org/mongo-driver/bson \
github.com/mailru/easyjson/...
}
# add generated tag to the top of each file
_prependbt() {
local tag="${3:-generated}"
cat > ${2} <<EOF
// +build ${tag}
EOF
cat ${1} >> ${2}
rm -f ${1}
}
_sed_in_file() {
case "$(uname -s)" in
Darwin*) sed -i '' "$@";;
*) sed -i "$@";;
esac
}
# To run the full suite of benchmarks, including executing against the external frameworks
# listed above, you MUST first run code generation for the frameworks that support it.
#
# If you want to run the benchmarks against code generated values.
# Then first generate the code generated values from values_test.go named typed.
# we cannot normally read a _test.go file, so temporarily copy it into a readable file.
_gen() {
local zsfx="_generated_test.go"
# local z=`pwd`
# z=${z%%/src/*}
# Note: ensure you run the codecgen for this codebase
# NOTE: MARKER: ffjson has been generating bad uncompilable code, so ignore it for now
cp values_test.go v.go &&
echo "codecgen ..." &&
codecgen -nx -ta=false -rt codecgen -t 'codecgen generated' -o values_codecgen${zsfx} -d 19780 v.go &&
echo "msgp ... " &&
msgp -unexported -tests=false -o=m9.go -file=v.go &&
_prependbt m9.go values_msgp${zsfx} &&
echo "easyjson ... " &&
easyjson -all -no_std_marshalers -omit_empty -output_filename e9.go v.go &&
_prependbt e9.go values_easyjson${zsfx} &&
echo "ffjson ... " &&
ffjson -force-regenerate -reset-fields -w f9.go v.go &&
_prependbt f9.go values_ffjson${zsfx} ignore &&
_sed_in_file -e 's+ MarshalJSON(+ _MarshalJSON(+g' values_ffjson${zsfx} &&
_sed_in_file -e 's+ UnmarshalJSON(+ _UnmarshalJSON(+g' values_ffjson${zsfx} &&
rm -f easyjson-bootstrap*.go ffjson-inception* &&
rm -f v.go &&
echo "... DONE"
}
# run the full suite of tests
#
# Basically, its a sequence of
# ${go[@]} test -tags "alltests x codec.safe codecgen generated" -bench "CodecSuite or AllSuite or XSuite" -benchmem
#
_suite_tests() {
if [[ "${do_x}" = "1" ]]; then
printf "\n==== X Baseline ====\n"
${go[@]} test "${zargs[@]}" -tags x -v "$@"
else
printf "\n==== Baseline ====\n"
${go[@]} test "${zargs[@]}" -v "$@"
fi
if [[ "${do_x}" = "1" ]]; then
printf "\n==== X Generated ====\n"
${go[@]} test "${zargs[@]}" -tags "x generated" -v "$@"
else
printf "\n==== Generated ====\n"
${go[@]} test "${zargs[@]}" -tags "generated" -v "$@"
fi
}
_suite_tests_strip_file_line() {
# sed -e 's/^\([^a-zA-Z0-9]\+\)[a-zA-Z0-9_]\+\.go:[0-9]\+:/\1/'
sed -e 's/[a-zA-Z0-9_]*.go:[0-9]*://g'
}
_suite_any() {
local x="$1"
local g="$2"
local b="$3"
shift 3
local a=( "" "codec.safe" "codec.notfastpath" "codec.notfastpath codec.safe" "codecgen" "codecgen codec.safe")
if [[ "$g" = "g" ]]; then a=( "generated" "generated codec.safe"); fi
for i in "${a[@]}"; do
echo ">>>> bench TAGS: 'alltests $x $i' SUITE: $b"
${go[@]} test "${zargs[@]}" -tags "alltests $x $i" -bench "$b" -benchmem "$@"
done
}
# _suite() {
# local t="alltests x"
# local a=( "" "codec.safe" "codec.notfastpath" "codec.notfastpath codec.safe" "codecgen" "codecgen codec.safe")
# for i in "${a[@]}"
# do
# echo ">>>> bench TAGS: '$t $i' SUITE: BenchmarkCodecXSuite"
# ${go[@]} test "${zargs[@]}" -tags "$t $i" -bench BenchmarkCodecXSuite -benchmem "$@"
# done
# }
# _suite_gen() {
# local t="alltests x"
# local b=( "generated" "generated codec.safe")
# for i in "${b[@]}"
# do
# echo ">>>> bench TAGS: '$t $i' SUITE: BenchmarkCodecXGenSuite"
# ${go[@]} test "${zargs[@]}" -tags "$t $i" -bench BenchmarkCodecXGenSuite -benchmem "$@"
# done
# }
# _suite_json() {
# local t="alltests x"
# local a=( "" "codec.safe" "codec.notfastpath" "codec.notfastpath codec.safe" "codecgen" "codecgen codec.safe")
# for i in "${a[@]}"
# do
# echo ">>>> bench TAGS: '$t $i' SUITE: BenchmarkCodecQuickAllJsonSuite"
# ${go[@]} test "${zargs[@]}" -tags "$t $i" -bench BenchmarkCodecQuickAllJsonSuite -benchmem "$@"
# done
# }
# _suite_very_quick_json() {
# # Quickly get numbers for json, stdjson, jsoniter and json (codecgen)"
# echo ">>>> very quick json bench"
# ${go[@]} test "${zargs[@]}" -tags "alltests x" -bench "__(Json|Std_Json|JsonIter)__" -benchmem "$@"
# echo
# ${go[@]} test "${zargs[@]}" -tags "alltests codecgen" -bench "__Json____" -benchmem "$@"
# }
# _suite_very_quick_json_via_suite() {
# # Quickly get numbers for json, stdjson, jsoniter and json (codecgen)"
# echo ">>>> very quick json bench"
# local prefix="BenchmarkCodecVeryQuickAllJsonSuite/json-all-bd1......../"
# ${go[@]} test "${zargs[@]}" -tags "alltests x" -bench BenchmarkCodecVeryQuickAllJsonSuite -benchmem "$@" |
# sed -e "s+^$prefix++"
# echo "---- CODECGEN RESULTS ----"
# ${go[@]} test "${zargs[@]}" -tags "x generated" -bench "__(Json|Easyjson)__" -benchmem "$@"
# }
_suite_very_quick_json_non_suite() {
# Quickly get numbers for json, stdjson, jsoniter, goccyjson and json (codecgen)"
local t="${1:-x}"
shift
echo ">>>> very quick json bench"
local tags=("${t}" "${t} generated" "${t} codec.safe" "${t} generated codec.safe" "${t} codec.notfastpath")
local js=( En De )
for t in "${tags[@]}"; do
echo "---- tags: ${t} ----"
local b="Json"
if [[ "${t}" =~ x && ! "${t}" =~ safe && ! "${t}" =~ notfastpath ]]; then
b="Json|Std_Json|JsonIter|GoccyJson"
if [[ "${t}" =~ generated ]]; then b="Json|Easyjson"; fi
fi
for j in "${js[@]}"; do
${go[@]} test "${zargs[@]}" -tags "${t}" -bench "__(${b})__.*${j}" -benchmem "$@"
[[ "${b}" != Json ]] && echo # echo if more than 1 line is printed
done
done
}
_suite_very_quick_benchmark() {
local a="${1:-Json}" # Json Cbor Msgpack Simple
# case "$1" in
# Json|Cbor|Msgpack|Simple|Binc) a="${1}"; shift ;;
# esac
local b="${2}"
local c="${3}"
local t="${4:-4s}" # 4s 1x
shift 4
${go[@]} test "${zargs[@]}" -tags "alltests ${c}" -bench "__${a}__.*${b}" -benchmem -benchtime "${t}" "$@"
}
_suite_trim_output() {
grep -v -E "^(goos:|goarch:|pkg:|cpu:|PASS|ok|=== RUN|--- PASS)"
}
_bench_dot_out_dot_txt() {
printf "**** STATS ****\n\n"
./bench.sh -tx # (stats)
printf "**** SUITE ****\n\n"
./bench.sh -sx # (not codecgen)
printf "**** SUITE (WITH CODECGEN) ****\n\n"
./bench.sh -sgx # (codecgen)
}
_suite_debugging() {
_suite_very_quick_benchmark "$@"
# local cg="n" # n = no codecgen, c = codecgen; options are c, n, cn
# local js=( De ) # or: ( _ ) ( En ) ( De ) ( En De )
# for j in ${js[@]}; do
# if [[ ${cg} =~ "c" ]]; then
# echo "---- codecgen ----"
# ${go[@]} test "${zargs[@]}" -tags "generated" -bench "__(Json)__.*${j}" -benchtime 2s -benchmem "$@"
# fi
# if [[ ${cg} =~ "n" ]]; then
# echo "---- no codecgen ----"
# ${go[@]} test "${zargs[@]}" -tags "" -bench "__(Json)__.*${j}" -benchtime 2s -benchmem "$@"
# fi
# echo
# done
}
_usage() {
printf "usage: bench.sh -[dcbsgjqpz] for \n"
printf "\t-d download\n"
printf "\t-c code-generate\n"
printf "\t-tx tests (show stats for each format and whether encoded == decoded); if x, do external also\n"
printf "\t-sgx run test suite for codec; if g, use generated files; if x, do external also\n"
printf "\t-jq run test suite for [json, json-quick]\n"
printf "\t-p run test suite with profiles: defaults to json: [format/prefix] [suffix] [tags] [benchtime]\n"
printf "\t-z run tests for bench.out.txt\n"
printf "\t-f [pprof file] run pprof\n"
printf "\t-y run debugging suite (during development only): [format/prefix] [suffix] [tags] [benchtime]\n"
}
_main() {
if [[ "$1" == "" || "$1" == "-h" || "$1" == "-?" ]]; then
_usage
return 1
fi
# export GODEBUG=asyncpreemptoff=1 # TODO remove
local go=( "${MYGOCMD:-go}" )
local zargs=("-count" "1" "-tr")
local args=()
local do_x="0"
local do_g="0"
while getopts "dcbsjqptxklgzfy" flag
do
case "$flag" in
d|c|b|s|j|q|p|t|x|k|l|g|z|f|y) args+=( "$flag" ) ;;
*) _usage; return 1 ;;
esac
done
shift "$((OPTIND-1))"
[[ " ${args[*]} " == *"x"* ]] && do_x="1"
[[ " ${args[*]} " == *"g"* ]] && do_g="1"
[[ " ${args[*]} " == *"k"* ]] && zargs+=("-gcflags" "all=-B")
[[ " ${args[*]} " == *"l"* ]] && zargs+=("-gcflags" "all=-l=4")
[[ " ${args[*]} " == *"d"* ]] && _go_get "$@"
[[ " ${args[*]} " == *"c"* ]] && _gen "$@"
[[ " ${args[*]} " == *"s"* && "${do_x}" == 0 && "${do_g}" == 0 ]] && _suite_any - - BenchmarkCodecSuite "$@" | _suite_trim_output
[[ " ${args[*]} " == *"s"* && "${do_x}" == 0 && "${do_g}" == 1 ]] && _suite_any - g BenchmarkCodecSuite "$@" | _suite_trim_output
[[ " ${args[*]} " == *"s"* && "${do_x}" == 1 && "${do_g}" == 0 ]] && _suite_any x - BenchmarkCodecXSuite "$@" | _suite_trim_output
[[ " ${args[*]} " == *"s"* && "${do_x}" == 1 && "${do_g}" == 1 ]] && _suite_any x g BenchmarkCodecXGenSuite "$@" | _suite_trim_output
[[ " ${args[*]} " == *"j"* ]] && _suite_any x - BenchmarkCodecQuickAllJsonSuite "$@" | _suite_trim_output
# These are some very specific suites
# [[ " ${args[*]} " == *"q"* ]] && _suite_very_quick_json_via_suite "$@" | _suite_trim_output
[[ " ${args[*]} " == *"q"* ]] && _suite_very_quick_json_non_suite "$@" | _suite_trim_output
# These are just helpers (not really running benchmark suites)
[[ " ${args[*]} " == *"t"* ]] && _suite_tests "$@" | _suite_trim_output | _suite_tests_strip_file_line
[[ " ${args[*]} " == *"p"* ]] && zargs+=("-cpuprofile" "cpu.out" "-memprofile" "mem.out" "-memprofilerate" "1") && _suite_very_quick_benchmark "$@" | _suite_trim_output
[[ " ${args[*]} " == *"f"* ]] && ${go[@]} tool pprof bench.test ${1:-mem.out}
[[ " ${args[*]} " == *"z"* ]] && _bench_dot_out_dot_txt
[[ " ${args[*]} " == *"y"* ]] && _suite_debugging "$@" | _suite_trim_output
true
# shift $((OPTIND-1))
}
if [ "." = `dirname $0` ]
then
_main "$@"
else
echo "bench.sh must be run from the directory it resides in"
_usage
fi