-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (29 loc) · 1003 Bytes
/
Makefile
File metadata and controls
41 lines (29 loc) · 1003 Bytes
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
# Makefile
.PHONY: all test eval dev
num_cores = 100
num_tests_NDE = 30000_0000
num_tests_NADE = 3000_0000
test_NDE:
python test_NDE.py --AV 0 -c $(num_cores) -t $(num_tests_NDE)
test_NADE_SCV:
python test_NADE_SCV.py --AV 0 -c $(num_cores) -t $(num_tests_NADE)
test: test_NDE test_NADE_SCV
bootstrap_NDE:
python bootstrap_NDE.py --AV 0
bootstrap_NADE:
python bootstrap_NADE.py --AV 0
bootstrap_SCV:
python bootstrap_SCV.py --AV 0
eval: bootstrap_NDE bootstrap_NADE bootstrap_SCV
all: test eval
# for development
tmp_num_cores = 2
tmp_num_tests = 1000
tmp_num_bootstrap = 2
tmp_num_separation = 10
dev:
python test_NDE.py --AV 0 -c $(tmp_num_cores) -t $(tmp_num_tests)
python test_NADE_SCV.py --AV 0 -c $(tmp_num_cores) -t $(tmp_num_tests)
python bootstrap_NDE.py --AV 0 -b $(tmp_num_bootstrap) -s $(tmp_num_separation)
python bootstrap_NADE.py --AV 0 -b $(tmp_num_bootstrap) -s $(tmp_num_separation)
python bootstrap_SCV.py --AV 0 -b $(tmp_num_bootstrap) -s $(tmp_num_separation)