forked from pyro-ppl/pyro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
90 lines (64 loc) · 2.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
.PHONY: all install docs lint format test integration-test clean FORCE
all: docs test
install: FORCE
pip install -e .[dev,profile]
uninstall: FORCE
pip uninstall pyro-ppl
docs: FORCE
$(MAKE) -C docs html
apidoc: FORCE
$(MAKE) -C docs apidoc
tutorial: FORCE
$(MAKE) -C tutorial html
lint: FORCE
flake8
isort --check .
python scripts/update_headers.py --check
mypy pyro
# mypy examples # FIXME
mypy scripts
license: FORCE
python scripts/update_headers.py
format: license FORCE
isort .
version: FORCE
python scripts/update_version.py
scrub: FORCE
find tutorial -name "*.ipynb" | xargs python -m nbstripout --keep-output --keep-count
find tutorial -name "*.ipynb" | xargs python tutorial/source/cleannb.py
doctest: FORCE
python -m pytest -p tests.doctest_fixtures --doctest-modules -o filterwarnings=ignore pyro
perf-test: FORCE
bash scripts/perf_test.sh ${ref}
profile: ref=dev
profile: FORCE
bash scripts/profile_model.sh ${ref} ${models}
test: lint docs doctest FORCE
pytest -vx -n auto --stage unit
test-examples: lint FORCE
pytest -vx --stage test_examples
test-tutorials: lint FORCE
grep -l smoke_test tutorial/source/*.ipynb | xargs grep -L 'smoke_test = False' \
| CI=1 xargs pytest -vx --nbval-lax --current-env
integration-test: lint FORCE
pytest -vx -n auto --stage integration
test-all: lint FORCE
pytest -vx -n auto
CI=1 grep -l smoke_test tutorial/source/*.ipynb \
| xargs pytest -vx --nbval-lax
test-cuda: lint FORCE
CUDA_TEST=1 PYRO_TENSOR_TYPE=torch.cuda.DoubleTensor pytest -vx --stage unit
CUDA_TEST=1 pytest -vx tests/test_examples.py::test_cuda
test-cuda-lax: lint FORCE
CUDA_TEST=1 PYRO_TENSOR_TYPE=torch.cuda.DoubleTensor pytest -vx --stage unit --lax
CUDA_TEST=1 pytest -vx tests/test_examples.py::test_cuda
test-jit: FORCE
@echo See jit.log
pytest -v -n auto --tb=short --runxfail tests/infer/test_jit.py tests/test_examples.py::test_jit | tee jit.log
pytest -v -n auto --tb=short --runxfail tests/infer/mcmc/test_hmc.py tests/infer/mcmc/test_nuts.py \
-k JIT=True | tee -a jit.log
test-funsor: lint FORCE
pytest -vx -n auto --stage funsor
clean: FORCE
git clean -dfx -e pyro_ppl.egg-info
FORCE: