forked from pfnet/pytorch-pfn-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
48 lines (38 loc) · 1.9 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
SHELL := bash
.SHELLFLAGS := -eu -o pipefail -c
MAKEFLAGS += --warn-undefined-variables
.DEFAULT_GOAL := help
PWD := $(realpath $(dir $(abspath $(firstword $(MAKEFILE_LIST)))))
PY := python
PIP := $(PY) -m pip
PROCESS_NUM = 2
MPI_OUTPUT_FILE_DIR = $(realpath $(shell mktemp -d))
.PHONY: format
format: ## Format the Python code.
cp "$$($(PIP) show torch | awk '/^Location:/ { print $$2 }')/torch/__init__.py" stubs/torch/__init__.py
trap "rm -f stubs/torch/__init__.py" EXIT; MYPYPATH="$(PWD)/stubs" $(PY) -m pysen run format lint
.PHONY: lint
lint: ## Lint the Python code.
cp "$$($(PIP) show torch | awk '/^Location:/ { print $$2 }')/torch/__init__.py" stubs/torch/__init__.py
trap "rm -f stubs/torch/__init__.py" EXIT; MYPYPATH="$(PWD)/stubs" $(PY) -m pysen run lint
.PHONY: test
test: ## Run all tests.
$(PY) -m pytest -m "not mpi" tests
.PHONY: cputest
cputest: ## Run all tests except for ones requiring GPU.
$(PY) -m pytest -m "not gpu and not mpi" tests
.PHONY: mpitest
mpitest: ## Run all tests except for ones requiring GPU.
mpi_output_file_dir=$(MPI_OUTPUT_FILE_DIR); \
mpirun --allow-run-as-root -n $(PROCESS_NUM) --output-filename $$mpi_output_file_dir -x TORCH_DISTRIBUTED_DEBUG=DETAIL $(PY) -m pytest -m mpi tests > /dev/null 2> /dev/null &&:; \
ret=$$?; \
for i in $$(seq 0 $$(($(PROCESS_NUM) - 1))); do echo ========= MPI process $$i =========; cat $$mpi_output_file_dir/1/rank.$$i/stdout; cat $$mpi_output_file_dir/1/rank.$$i/stderr; done; \
[ $$ret = 0 ]
.PHONY: example_lint
example_lint: ## Format the Python code.
cp "$$($(PIP) show torch | awk '/^Location:/ { print $$2 }')/torch/__init__.py" stubs/torch/__init__.py
trap "rm -f stubs/torch/__init__.py" EXIT; $(PY) -m pysen --config ./example_pysen.toml run lint
.PHONY: help
help: ## Display this help message.
@grep -E '^[%%a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'