-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (38 loc) · 2.05 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
# Disable echoing of commands
MAKEFLAGS += --silent
.PHONY: all render visualizations clean
all: render visualizations
render:
$(MAKE) -C ntru/hot-paths
$(MAKE) -C classic-mceliece/hot-paths
visualizations: sequential-table sequential-deviation-graph sequential-deviation-table sequential-runs-graph sequential-runs-table stack-symbol-change-table stack-symbol-table parallel-throughput-graph parallel-throughput-table cache-misses-table cpu-cycles-table micro-graph
sequential-table:
python3 -m visualization.main all -d data.sqlite --verbose -n sequential-table -o build
sequential-deviation-graph:
python3 -m visualization.main all -d data.sqlite --verbose -n sequential-deviation-graph -o build
sequential-deviation-table:
python3 -m visualization.main all -d data.sqlite --verbose -n sequential-deviation-table -o build
sequential-runs-graph:
python3 -m visualization.main all -d data.sqlite --verbose -n sequential-runs-graph -o build
sequential-runs-table:
python3 -m visualization.main all -d data.sqlite --verbose -n sequential-runs-table -o build
stack-symbol-change-table:
python3 -m visualization.main all -d data.sqlite --verbose -n stack-symbol-change-table -o build
stack-symbol-table:
python3 -m visualization.main all -d data.sqlite --verbose -n stack-symbol-table -o build
parallel-throughput-graph:
python3 -m visualization.main all -d data.sqlite --verbose -n parallel-throughput-graph -o build
parallel-throughput-table:
python3 -m visualization.main all -d data.sqlite --verbose -n parallel-throughput-table -o build
cache-misses-table:
python3 -m visualization.main all -d data.sqlite --verbose -n cache-misses-table -o build
cpu-cycles-table:
python3 -m visualization.main all -d data.sqlite --verbose -n cpu-cycles-table -o build
page-faults-table:
python3 -m visualization.main all -d data.sqlite --verbose -n page-faults-table -o build
micro-graph:
python3 -m visualization.main all -d data.sqlite --verbose -n micro-graph -o build
clean:
$(MAKE) -C ntru/hot-paths clean
$(MAKE) -C classic-mceliece/hot-paths clean
rm -rf build &> /dev/null || true