-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
110 lines (92 loc) · 3.13 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
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
SHELL:=/usr/bin/bash
default: build test
##############################################################################
#
# Build
#
##############################################################################
# Recreate Makefiles when CMakeLists.txt changes
./build/debug/Makefile: CMakeLists.txt
@mkdir -p ./build/debug
@mkdir -p ./build/release
@cd build/debug && cmake -D CMAKE_BUILD_TYPE=Debug ../..
@cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../..
.PHONY: build # Build all targets
build: ./build/debug/Makefile
@cd build/debug && make -j
@cd build/release && make -j
.PHONY: clean # Remove all build dependencies
clean:
@rm -rf build
##############################################################################
#
# Test
#
##############################################################################
.PHONY: unit_test
unit_test: BUILD=debug
unit_test:
@parallel --jobs 24 --halt now,fail=1 "echo {} && {}" ::: build/$(BUILD)/test_*
.PHONY: test # Run tests
test:
@echo "Testing..."
@$(MAKE) --no-print-directory unit_test BUILD=debug
@$(MAKE) --no-print-directory unit_test BUILD=release
##############################################################################
#
# Classify and score
#
##############################################################################
INPUT=./data/remote/latest/*.csv
.PHONY: classify # Run classifier
classify: BUILD=debug
classify: OO_PARAMS="--verbose"
classify: MAX_FILES=1000
classify: build
@mkdir -p predictions
@ls -1 $(INPUT) \
| head -$(MAX_FILES) \
| parallel --verbose --lb --jobs=16 --halt now,fail=1 \
"build/$(BUILD)/classify $(OO_PARAMS) < {} > predictions/{/.}_classified.csv"
.PHONY: score # Get scores for OO++
score: build
@./scripts/get_oopp_scores.sh
@cat ./micro_scores_no_surface.txt
@cat ./micro_scores_all.txt
.PHONY: search # Search OO parameter space
search: build
@python ./scripts/generate_search_commands.py --build=release
##############################################################################
#
# View results
#
##############################################################################
.PHONY: view # View predictions
view:
@parallel --lb --jobs=100 \
"streamlit run ../ATL24_viewer/view_predictions.py -- --verbose {}" \
::: $$(find ./predictions/*.csv | head)
##############################################################################
#
# Make everything
#
##############################################################################
.PHONY: everything # Make everything. This will take a while.
everything:
@scripts/yesno.bash "This will clean, classify, ... etc."
@echo "Build/test"
@$(MAKE) --no-print-directory clean build test BUILD=release
@echo "Cleaning local files"
@rm -rf predictions/
@echo "Classifying/scoring"
@$(MAKE) --no-print-directory classify score BUILD=release
##############################################################################
#
# Get help by running
#
# $ make help
#
##############################################################################
.PHONY: help # Generate list of targets with descriptions
help:
@grep '^.PHONY: .* #' Makefile | sed 's/\.PHONY: \(.*\) # \(.*\)/\1 \2/' | expand -t25