-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
56 lines (42 loc) · 1.43 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
PIP := $(shell command -v pip3 2> /dev/null || command which pip 2> /dev/null)
PYTHON := $(shell command -v python3 2> /dev/null || command which python 2> /dev/null)
NUM_PROCESSES = 3
.PHONY: install dev-install install_conda dev-install_conda tests doc docupdate run_examples run_tutorials
pipcheck:
ifndef PIP
$(error "Ensure pip or pip3 are in your PATH")
endif
@echo Using pip: $(PIP)
pythoncheck:
ifndef PYTHON
$(error "Ensure python or python3 are in your PATH")
endif
@echo Using python: $(PYTHON)
install:
make pipcheck
$(PIP) install -r requirements.txt && $(PIP) install .
dev-install:
make pipcheck
$(PIP) install -r requirements-dev.txt && $(PIP) install -e .
install_conda:
conda env create -f environment.yml && conda activate pylops_mpi && pip install .
dev-install_conda:
conda env create -f environment-dev.yml && conda activate pylops_mpi && pip install -e .
lint:
flake8 pylops_mpi/ tests/ examples/ tutorials/
tests:
mpiexec -n $(NUM_PROCESSES) pytest tests/ --with-mpi
doc:
cd docs && rm -rf source/api/generated && rm -rf source/gallery &&\
rm -rf source/tutorials && rm -rf build &&\
cd .. && sphinx-build -b html docs/source docs/build
docupdate:
cd docs && make html && cd ..
servedoc:
$(PYTHON) -m http.server --directory docs/build/
# Run examples using mpi
run_examples:
sh mpi_examples.sh examples $(NUM_PROCESSES)
# Run tutorials using mpi
run_tutorials:
sh mpi_examples.sh tutorials $(NUM_PROCESSES)