tiger-lib 0.8.1

Library used by the tools ck3-tiger and vic3-tiger. This library holds the bulk of the code for them. It can be built either for ck3-tiger with the feature ck3, or for vic3-tiger with the feature vic3, but not both at the same time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
flamegraph: flamegraph-apw flamegraph-pod

flamegraph-apw: flamegraph-apw.svg

flamegraph-pod: flamegraph-pod.svg

flamegraph-apw.svg: always
	mv flamegraph-apw.svg flamegraph-apw.old.svg
	cargo flamegraph -v --bench criterion --skip-after criterion::main -o $@ -- --bench --profile-time 5 apw
	rm -f perf.data perf.data.old

flamegraph-pod.svg: always
	mv flamegraph-pod.svg flamegraph-pod.old.svg
	cargo flamegraph -v --bench criterion --skip-after criterion::main -o $@ -- --bench --profile-time 5 pod
	rm -f perf.data perf.data.old

.PHONY: always