forked from daanx/mimalloc-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-bench-env.sh
executable file
·702 lines (629 loc) · 17.9 KB
/
build-bench-env.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
#!/bin/bash
set -eo pipefail
CFLAGS='-march=native'
CXXFLAGS='-march=native'
procs=8
extso=".so"
case "$OSTYPE" in
darwin*)
export HOMEBREW_NO_EMOJI=1
darwin="1"
extso=".dylib"
procs=`sysctl -n hw.physicalcpu`;;
*)
darwin=""
if command -v nproc > /dev/null; then
procs=`nproc`
fi;;
esac
curdir=`pwd`
rebuild=0
all=0
# allocator versions
version_dh=1d08836bdd6f935b333ec503cd8c9634c69de590
version_hd=5afe855 # 3.13 #a43ac40 #d880f72 #9d137ef37
version_hm=10
version_iso=1.1.0
version_je=5.2.1
version_mng=master
version_mesh=7ef171c7870c8da1c52ff3d78482421f46beb94c
version_mi=v1.7.3
version_mi2=v2.0.3
version_nomesh=7ef171c7870c8da1c52ff3d78482421f46beb94c
version_rp=4c10723
version_sc=v1.0.0
version_scudo=main
version_sm=709663f
version_sn=0.5.3
version_tbb=883c2e5245c39624b3b5d6d56d5b203cf09eac38 # needed for musl
version_tc=gperftools-2.9.1
# benchmark versions
version_redis=6.2.6
version_lean=v3.4.2
# allocators
setup_dh=0
setup_hd=0
setup_hm=0
setup_iso=0
setup_je=0
setup_mng=0
setup_mesh=0
setup_mi=0
setup_mi2=0
setup_nomesh=0
setup_rp=0
setup_sc=0
setup_scudo=0
setup_sm=0
setup_sn=0
setup_tbb=0
setup_tc=0
# bigger benchmarks
setup_bench=0
setup_ch=0
setup_lean=0
setup_redis=0
setup_factorio=0
# various
setup_packages=0
# Parse command-line arguments
while : ; do
flag="$1"
case "$flag" in
*=*) flag_arg="${flag#*=}";;
no-*) flag_arg="0"
flag="${flag#no-}";;
none) flag_arg="0" ;;
*) flag_arg="1" ;;
esac
# echo "option: $flag, arg: $flag_arg"
case "$flag" in
"") break;;
all|none)
all=$flag_arg
setup_hd=$flag_arg
setup_iso=$flag_arg
setup_je=$flag_arg
setup_mi=$flag_arg
setup_mi2=$flag_arg
setup_sn=$flag_arg
setup_tbb=$flag_arg
setup_tc=$flag_arg
if [ -z "$darwin" ]; then
setup_dh=$flag_arg
setup_mng=$flag_arg # lacking getentropy()
setup_hm=$flag_arg # lacking <thread.h>
setup_mesh=$flag_arg
setup_rp=$flag_arg
setup_scudo=$flag_arg # lacking <sys/auxv.h>
setup_sm=$flag_arg
else
if ! [ `uname -m` = "x86_64" ]; then
setup_dh=$flag_arg # does not compile on macos x64
fi
fi
# only run Mesh's 'nomesh' configuration if asked
# setup_nomesh=$flag_arg
# bigger benchmarks
setup_lean=$flag_arg
setup_redis=$flag_arg
setup_factorio=$flag_arg
setup_bench=$flag_arg
#setup_ch=$flag_arg
setup_packages=$flag_arg
;;
bench)
setup_bench=$flag_arg;;
ch)
setup_ch=$flag_arg;;
dh)
setup_dh=$flag_arg;;
hd)
setup_hd=$flag_arg;;
hm)
setup_hm=$flag_arg;;
iso)
setup_iso=$flag_arg;;
je)
setup_je=$flag_arg;;
lean)
setup_lean=$flag_arg;;
mng)
setup_mng=$flag_arg;;
mesh)
setup_mesh=$flag_arg;;
mi)
setup_mi=$flag_arg;;
mi2)
setup_mi2=$flag_arg;;
nomesh)
setup_nomesh=$flag_arg;;
packages)
setup_packages=$flag_arg;;
redis)
setup_redis=$flag_arg;;
factorio)
setup_factorio=$flag_arg;;
rp)
setup_rp=$flag_arg;;
sc)
setup_sc=$flag_arg;;
scudo)
setup_scudo=$flag_arg;;
sm)
setup_sm=$flag_arg;;
sn)
setup_sn=$flag_arg;;
tbb)
setup_tbb=$flag_arg;;
tc)
setup_tc=$flag_arg;;
-r|--rebuild)
rebuild=1;;
-j=*|--procs=*)
procs=$flag_arg;;
-h|--help|-\?|help|\?)
echo "./build-bench-env [options]"
echo ""
echo " all setup and build (almost) everything"
echo ""
echo " --procs=<n> number of processors (=$procs)"
echo " --rebuild force re-clone and re-build for given tools"
echo ""
echo " dh setup dieharder ($version_dh)"
echo " hd setup hoard ($version_hd)"
echo " hm setup hardened_malloc ($version_hm)"
echo " iso setup isoalloc ($version_iso)"
echo " je setup jemalloc ($version_je)"
echo " mng setup mallocng ($version_mng)"
echo " mesh setup mesh allocator ($version_mesh)"
echo " mi setup mimalloc ($version_mi)"
echo " mi2 setup mimalloc2 ($version_mi2)"
echo " nomesh setup mesh allocator w/o meshing ($version_mesh)"
echo " rp setup rpmalloc ($version_rp)"
echo " sc setup scalloc ($version_sc)"
echo " scudo setup scudo ($version_scudo)"
echo " sm setup supermalloc ($version_sm)"
echo " sn setup snmalloc ($version_sn)"
echo " tbb setup Intel TBB malloc ($version_tbb)"
echo " tc setup tcmalloc ($version_tc)"
echo ""
echo " bench build all local benchmarks"
echo " lean setup lean 3 benchmark"
echo " packages setup required packages"
echo " redis setup redis benchmark"
echo ""
echo "Prefix an option with 'no-' to disable an option"
exit 0;;
*) echo "warning: unknown option \"$1\"." 1>&2
esac
shift
done
if test -f ./build-bench-env.sh; then
echo ""
echo "use '-h' to see all options"
echo "use 'all' to build all allocators"
echo ""
echo "building with $procs threads"
echo "--------------------------------------------"
echo ""
else
echo "error: must run from the toplevel mimalloc-bench directory!"
exit 1
fi
mkdir -p extern
devdir="$curdir/extern"
function phase {
cd "$curdir"
echo
echo
echo "--------------------------------------------"
echo "$1"
echo "--------------------------------------------"
echo
}
function write_version { # name, git-tag, repo
commit=$(git log -n1 --format=format:"%h")
echo "$1: $2, $commit, $3" > "$devdir/version_$1.txt"
}
function partial_checkout { # name, git-tag, directory, git repo, directory to download
phase "build $1: version $2"
pushd $devdir
if test "$rebuild" = "1"; then
rm -rf "$3"
fi
if test -d "$3"; then
echo "$devdir/$3 already exists; no need to git clone"
cd "$3"
else
mkdir "$3"
cd "$3"
git init
git remote add origin $4
git config extensions.partialClone origin
git sparse-checkout set $5
fi
git fetch --depth=1 --filter=blob:none origin $2
git checkout $2
git reset origin/$2 --hard
write_version $1 $2 $4
}
function checkout { # name, git-tag, directory, git repo, options
phase "build $1: version $2"
pushd $devdir
if test "$rebuild" = "1"; then
rm -rf "$3"
fi
if test -d "$3"; then
echo "$devdir/$3 already exists; no need to git clone"
else
git clone $5 $4 $3
fi
cd "$3"
git checkout $2
write_version $1 $2 $4
}
function aptinstall {
echo ""
echo "> sudo apt install $1"
echo ""
sudo apt install --no-install-recommends $1
}
function dnfinstall {
echo ""
echo "> sudo dnf -y --quiet --nodocs install $1"
echo ""
sudo dnf -y --quiet --nodocs install $1
}
function apkinstall {
echo ""
echo "> apk add -q $1"
echo ""
apk add -q $1
}
function brewinstall {
echo ""
echo "> brew install $1"
echo ""
brew install $1
}
if test "$all" = "1"; then
if test "$rebuild" = "1"; then
phase "clean $devdir for a full rebuild"
pushd "$devdir"
cd ..
rm -rf "extern/*"
popd
fi
fi
if test "$setup_packages" = "1"; then
phase "install packages"
if grep -q 'ID=fedora' /etc/os-release 2>/dev/null; then
# no 'apt update' equivalent needed on Fedora
dnfinstall "gcc-c++ clang lld llvm-devel unzip dos2unix bc gmp-devel wget"
dnfinstall "cmake python3 ruby ninja-build libtool autoconf git patch time"
elif grep -q -e 'ID=debian' -e 'ID=ubuntu' /etc/os-release 2>/dev/null; then
echo "updating package database... (sudo apt update)"
sudo apt update -qq
aptinstall "g++ clang lld llvm-dev unzip dos2unix linuxinfo bc libgmp-dev wget"
aptinstall "cmake python3 ruby ninja-build libtool autoconf"
elif grep -q -e 'ID=alpine' /etc/os-release 2>/dev/null; then
apk update
apkinstall "clang lld unzip dos2unix bc gmp-dev wget cmake python3 automake"
apkinstall "samurai libtool git build-base linux-headers autoconf util-linux"
elif brew --version 2> /dev/null >/dev/null; then
brewinstall "dos2unix wget cmake ninja automake libtool gnu-time gmp mpir"
fi
fi
if test "$setup_hm" = "1"; then
checkout hm $version_hm hm https://github.com/GrapheneOS/hardened_malloc
make CONFIG_NATIVE=true CONFIG_WERROR=false VARIANT=light -j $proc
make CONFIG_NATIVE=true CONFIG_WERROR=false VARIANT=default -j $proc
popd
fi
if test "$setup_iso" = "1"; then
checkout iso $version_iso iso https://github.com/struct/isoalloc
make library -j $procs
popd
fi
if test "$setup_mng" = "1"; then
checkout mng $version_mng mng https://github.com/richfelker/mallocng-draft
make -j $procs
popd
fi
if test "$setup_scudo" = "1"; then
partial_checkout scudo $version_scudo scudo https://github.com/llvm/llvm-project "compiler-rt/lib/scudo/standalone"
cd "compiler-rt/lib/scudo/standalone"
# TODO: make the next line prettier instead of hardcoding everything.
clang++ -flto -fuse-ld=lld -fPIC -std=c++14 -fno-exceptions $CXXFLAGS -fno-rtti -fvisibility=internal -msse4.2 -O3 -I include -shared -o libscudo$extso *.cpp -pthread
cd -
popd
fi
if test "$setup_dh" = "1"; then
checkout dh $version_dh dh https://github.com/emeryberger/DieHard "--recursive"
# Doesn't support parallel compilation
if test "$darwin" = "1"; then
TARGET=libdieharder make -C src macos
else
TARGET=libdieharder make -C src linux-gcc-64
fi
popd
fi
if test "$setup_tbb" = "1"; then
checkout tbb $version_tbb tbb https://github.com/intel/tbb
cmake -DCMAKE_BUILD_TYPE=Release -DTBB_BUILD=OFF -DTBB_TEST=OFF -DTBB_OUTPUT_DIR_BASE=bench -DTBBMALLOC_PROXY_BUILD=OFF .
make -j $procs
popd
fi
if test "$setup_tc" = "1"; then
checkout tc $version_tc gperftools https://github.com/gperftools/gperftools
if test -f configure; then
echo "already configured"
else
./autogen.sh
CXXFLAGS="-w -DNDEBUG -O2" ./configure --enable-minimal --disable-debugalloc
fi
make -j $procs # ends with error on benchmark, but thats ok.
#echo ""
#echo "(note: the error 'Makefile:3912: recipe for target 'malloc_bench' failed' is expected)"
popd
fi
if test "$setup_hd" = "1"; then
checkout hd $version_hd Hoard https://github.com/emeryberger/Hoard
cd src
if [ "`uname -m -s`" = "Darwin x86_64" ] ; then
sed -i_orig 's/-arch arm64/ /g' GNUmakefile # fix the makefile
fi
make -j $procs
popd
fi
if test "$setup_je" = "1"; then
checkout je $version_je jemalloc https://github.com/jemalloc/jemalloc
if test -f config.status; then
echo "$devdir/jemalloc is already configured; no need to reconfigure"
else
./autogen.sh
fi
make -j $procs
popd
fi
if test "$setup_rp" = "1"; then
checkout rp $version_rp rpmalloc https://github.com/mjansson/rpmalloc
if test -f build.ninja; then
echo "$devdir/rpmalloc is already configured; no need to reconfigure"
else
python3 configure.py
fi
ninja
popd
fi
if test "$setup_sn" = "1"; then
checkout sn $version_sn snmalloc https://github.com/Microsoft/snmalloc
if test -f release/build.ninja; then
echo "$devdir/snmalloc is already configured; no need to reconfigure"
else
mkdir -p release
cd release
env CXX=clang++ cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release
cd ..
fi
cd release
ninja libsnmallocshim$extso
popd
fi
if test "$setup_sm" = "1"; then
checkout sm $version_sm SuperMalloc https://github.com/kuszmaul/SuperMalloc
sed -i "s/-Werror//" Makefile.include
cd release
make -j $procs
popd
fi
if test "$setup_mesh" = "1"; then
checkout mesh $version_mesh mesh https://github.com/plasma-umass/mesh
cmake .
make # cannot run in parallel
popd
fi
if test "$setup_nomesh" = "1"; then
checkout nomesh $version_nomesh nomesh https://github.com/plasma-umass/mesh
cmake . -DDISABLE_MESHING=ON
make # cannot run in parallel
popd
fi
if test "$setup_sc" = "1"; then
checkout sc $version_sc scalloc https://github.com/cksystemsgroup/scalloc
if test -f Makefile; then
echo "$devdir/scalloc is already configured; no need to reconfigure"
else
if test -f build/gyp/gyp; then
echo "$devdir/scalloc has the gyp tools installed; no need to re-download"
else
tools/make_deps.sh
fi
build/gyp/gyp --depth=. scalloc.gyp
fi
BUILDTYPE=Release make -j $procs
popd
fi
if test "$setup_mi" = "1"; then
checkout mi $version_mi mimalloc https://github.com/microsoft/mimalloc
echo ""
echo "- build mimalloc release"
mi_use_cxx=""
if test "$darwin" = "1"; then
mi_use_cxx="-DMI_USE_CXX=ON"
fi
mkdir -p out/release
cd out/release
cmake ../.. $mi_use_cxx
make -j $procs
cd ../..
echo ""
echo "- build mimalloc debug with full checking"
mkdir -p out/debug
cd out/debug
cmake ../.. -DMI_CHECK_FULL=ON $mi_use_cxx
make -j $procs
cd ../..
echo ""
echo "- build mimalloc secure"
mkdir -p out/secure
cd out/secure
cmake ../.. $mi_use_cxx
make -j $procs
cd ../..
popd
fi
if test "$setup_mi2" = "1"; then
checkout mi2 $version_mi2 mimalloc2 https://github.com/microsoft/mimalloc
echo ""
echo "- build mimalloc2 release"
mi_use_cxx=""
if test "$darwin" = "1"; then
mi_use_cxx="-DMI_USE_CXX=ON"
fi
mkdir -p out/release
cd out/release
cmake ../.. $mi_use_cxx
make -j $procs
cd ../..
echo ""
echo "- build mimalloc2 debug with full checking"
mkdir -p out/debug
cd out/debug
cmake ../.. -DMI_CHECK_FULL=ON $mi_use_cxx
make -j $procs
cd ../..
echo ""
echo "- build mimalloc secure"
mkdir -p out/secure
cd out/secure
cmake ../.. $mi_use_cxx
make -j $procs
cd ../..
popd
fi
phase "install benchmarks"
if test "$setup_lean" = "1"; then
phase "build lean $version_lean"
pushd $devdir
if test -d lean; then
echo "$devdir/lean already exists; no need to git clone"
else
git clone https://github.com/leanprover/lean
fi
cd lean
git checkout "$version_lean"
mkdir -p out/release
cd out/release
env CC=gcc CXX="g++" cmake ../../src -DCUSTOM_ALLOCATORS=OFF -DLEAN_EXTRA_CXX_FLAGS="-w"
echo "make -j$procs"
make -j $procs
popd
fi
if test "$setup_redis" = "1"; then
phase "build redis $version_redis"
pushd "$devdir"
if test -d "redis-$version_redis"; then
echo "$devdir/redis-$version_redis already exists; no need to download it"
else
wget --no-verbose "http://download.redis.io/releases/redis-$version_redis.tar.gz"
tar xzf "redis-$version_redis.tar.gz"
fi
cd "redis-$version_redis/src"
USE_JEMALLOC=no MALLOC=libc BUILD_TLS=no make -j $procs
popd
fi
if test "$setup_factorio" = "1"; then
phase "build factorio"
pushd "$devdir"
if test -d "factorio"; then
echo "folder exists"
else
mkdir factorio
fi
cd factorio
if test -d "factorio"; then
rm -r factorio
fi
wget https://factorio.com/get-download/stable/headless/linux64
tar -xJf linux64
if test -d "saves"; then
echo "saves already available"
else
mkdir saves
cd saves
touch saves.list
echo "installing one map"
curl -o flame10k.zip https://factoriobox.1au.us/map/download/4c5f65003d84370f16d6950f639be1d6f92984f24c0240de6335d3e161705504.zip
echo "to add more files add their relative paths to extern/factorio/saves/saves.list"
echo "flame10k" >>saves.list
cd ../
if test -b "benchmark.sh"; then
echo "benchmark already available"
else
wget https://factoriobox.1au.us/scripts/benchmark.sh
fi
fi
popd
fi
if test "$setup_ch" = "1"; then
phase "build ClickHouse v19.8.3.8-stable"
checkout ClickHouse mimalloc ClickHouse https://github.com/yandex/ClickHouse "--recursive"
./release
popd
fi
if test "$setup_bench" = "1"; then
phase "patch shbench"
pushd "bench/shbench"
if test -f sh6bench-new.c; then
echo "do nothing: bench/shbench/sh6bench-new.c already exists"
else
wget --no-verbose http://www.microquill.com/smartheap/shbench/bench.zip
unzip -o bench.zip
dos2unix sh6bench.patch
dos2unix sh6bench.c
patch -p1 -o sh6bench-new.c sh6bench.c sh6bench.patch
fi
if test -f sh8bench-new.c; then
echo "do nothing: bench/shbench/sh8bench-new.c already exists"
else
wget --no-verbose http://www.microquill.com/smartheap/SH8BENCH.zip
unzip -o SH8BENCH.zip
dos2unix sh8bench.patch
dos2unix SH8BENCH.C
patch -p1 -o sh8bench-new.c SH8BENCH.C sh8bench.patch
fi
popd
fi
if test "$setup_bench" = "1"; then
phase "get Intel PDF manual"
pdfdoc="325462-sdm-vol-1-2abcd-3abcd.pdf"
pushd "$devdir"
if test -f "$pdfdoc"; then
echo "do nothing: $devdir/$pdfdoc already exists"
else
useragent="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:95.0) Gecko/20100101 Firefox/95.0"
wget --no-verbose -O "$pdfdoc" -U "useragent" https://www.intel.com/content/dam/develop/external/us/en/documents/325462-sdm-vol-1-2abcd-3abcd-508360.pdf
fi
popd
fi
if test "$setup_bench" = "1"; then
phase "build benchmarks"
mkdir -p out/bench
cd out/bench
cmake ../../bench
make -j $procs
cd ../..
fi
curdir=`pwd`
phase "installed allocators"
cat $devdir/version_*.txt | tee $devdir/versions.txt | column -t
phase "done in $curdir"
echo "run the cfrac benchmarks as:"
echo "> cd out/bench"
echo "> ../../bench.sh alla cfrac"
echo
echo "to see all options use:"
echo "> ../../bench.sh help"
echo