-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
86 lines (67 loc) · 2.18 KB
/
Makefile
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
################################################################################
#
# You can run them like `make install` or `make benchmark`
#
################################################################################
################################################################################
# INSTALL
################################################################################
install-jq:
ifeq ($(shell lsb_release -si), ManjaroLinux)
sudo pacman -S jq --noconfirm
else ifeq ($(shell lsb_release -si), ArchLinux)
sudo pacman -S jq --noconfirm
else ifeq ($(shell uname),Linux)
sudo apt-get install jq -y
else
brew install jq --quiet --force
endif
install-csv-to-markdown:
sudo npm install --global csv-to-markdown
install mpdf:
sudo npm install mpdf -g
install: install-jq
install: install-csv-to-markdown
install: install-mpdf
################################################################################
# BENCHMARK
################################################################################
benchmark-build:
ifeq ($(shell uname),Linux)
cargo build \
--profile release \
--features runtime-benchmarks
else
AR=/usr/local/opt/llvm/bin/llvm-ar \
CC=/usr/local/opt/llvm/bin/clang \
cargo build \
--release \
--features runtime-benchmarks
endif
benchmark-compute:
./target/release/node-template benchmark pallet \
--chain dev \
--execution=wasm \
--wasm-execution=compiled \
--pallet "*" \
--extrinsic "*" \
--steps 50 \
--repeat 20 \
--json \
> results.json
benchmark-to-csv:
cat results.json | jq -r '["extrinsic", "time (µs)"], (.[] | [ .benchmark, ([.time_results[]?.extrinsic_time] | (add / (if length == 0 then 1 else length end)) | round /1000 ) ]) | @csv' > results.csv
benchmark-csv-to-markdown:
csv-to-markdown results.csv > benchmark.md
benchmark-to-pdf:
mpdf benchmark.md
benchmark-cleanup:
rm results.json
rm results.csv
rm benchmark.md
benchmark: benchmark-build
benchmark: benchmark-compute
benchmark: benchmark-to-csv
benchmark: benchmark-csv-to-markdown
benchmark: benchmark-to-pdf
benchmark: benchmark-cleanup