-
Notifications
You must be signed in to change notification settings - Fork 173
/
Makefile
81 lines (67 loc) · 2.55 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
.PHONY: build docs test
BUILDDIR := $(PWD)
BUILD_ARGS := # set nightly to build nightly release
CHECKDIRS := examples tests src utils setup.py
PYCHECKGLOBS := 'examples/**/*.py' 'scripts/**/*.py' 'src/**/*.py' 'tests/**/*.py' 'utils/**/*.py' setup.py
DOCDIR := docs
MDCHECKGLOBS := 'docs/**/*.md' 'docs/**/*.rst' 'examples/**/*.md' 'scripts/**/*.md'
MDCHECKFILES := CODE_OF_CONDUCT.md CONTRIBUTING.md DEVELOPING.md README.md
SPARSEZOO_TEST_MODE := "true"
NM_DISABLE_ANALYTICS := "true"
TARGETS := "" # targets for running pytests: cli,nobase
PYTEST_ARGS ?= ""
ifneq ($(findstring cli,$(TARGETS)),cli)
PYTEST_ARGS += --ignore tests/test_benchmark.py \
--ignore tests/test_check_hardware.py \
--ignore tests/test_run_inference.py
endif
ifeq ($(findstring nobase,$(TARGETS)),nobase)
PYTEST_ARGS += --ignore tests/deepsparse \
--ignore tests/utils/test_data.py \
--ignore tests/test_engine.py \
--ignore tests/test_multi_engine.py
endif
PYTHON := python3
# run checks on all files for the repo
quality:
@echo "Running copyright checks";
$(PYTHON) utils/copyright.py quality $(PYCHECKGLOBS) $(MDCHECKGLOBS) $(MDCHECKFILES)
@echo "Running python quality checks";
black --check $(CHECKDIRS);
isort --check-only $(CHECKDIRS);
flake8 $(CHECKDIRS);
# style the code according to accepted standards for the repo
style:
@echo "Running copyrighting";
$(PYTHON) utils/copyright.py style $(PYCHECKGLOBS) $(JSCHECKGLOBS) $(MDCHECKGLOBS) $(MDCHECKFILES)
@echo "Running python styling";
black $(CHECKDIRS);
isort $(CHECKDIRS);
# pull the latest engine binaries from the artifact store
artifacts:
@echo "Running update binaries from artifact store";
$(PYTHON) utils/artifacts.py src/deepsparse --force
# run tests for the repo
test:
@echo "Running python tests";
@SPARSEZOO_TEST_MODE="true" NM_DISABLE_ANALYTICS="true" pytest tests/ --ignore integrations $(PYTEST_ARGS);
# run integrations tests for the repo
test_integrations:
@echo "Running package integrations tests";
@SPARSEZOO_TEST_MODE="true" NM_DISABLE_ANALYTICS="true" pytest integrations/ --ignore tests $(PYTEST_ARGS);
# create docs
docs:
@echo "Running docs creation";
$(PYTHON) utils/docs_builder.py --src $(DOCDIR) --dest $(DOCDIR)/build/html;
docsupdate:
@echo "Runnning update to api docs";
find $(DOCDIR)/api | grep .rst | xargs rm -rf;
sphinx-apidoc -o "$(DOCDIR)/api" src/deepsparse;
# creates wheel file
build:
$(PYTHON) setup.py sdist bdist_wheel $(BUILD_ARGS)
# clean package
clean:
rm -fr .pytest_cache;
rm -fr docs/_build docs/build;
find $(CHECKDIRS) | grep -E "(__pycache__|\.pyc|\.pyo)" | xargs rm -fr;