2021-02-01 16:09:12 +00:00
|
|
|
.PHONY: test clean docs
|
|
|
|
|
|
|
|
# to imitate SLURM set only single node
|
|
|
|
export SLURM_LOCALID=0
|
|
|
|
# assume you have installed need packages
|
2021-02-11 10:22:07 +00:00
|
|
|
export SPHINX_MOCK_REQUIREMENTS=1
|
2022-08-23 19:28:53 +00:00
|
|
|
# install only Lightning Trainer packages
|
|
|
|
export PACKAGE_NAME=pytorch
|
2020-11-12 09:25:31 +00:00
|
|
|
|
2021-02-05 23:33:12 +00:00
|
|
|
clean:
|
|
|
|
# clean all temp runs
|
|
|
|
rm -rf $(shell find . -name "mlruns")
|
|
|
|
rm -rf $(shell find . -name "lightning_log")
|
2021-02-08 01:31:44 +00:00
|
|
|
rm -rf $(shell find . -name "lightning_logs")
|
2021-02-05 23:33:12 +00:00
|
|
|
rm -rf _ckpt_*
|
|
|
|
rm -rf .mypy_cache
|
|
|
|
rm -rf .pytest_cache
|
|
|
|
rm -rf ./docs/build
|
2023-03-07 15:43:47 +00:00
|
|
|
rm -rf ./docs/source-fabric/api/generated
|
2022-06-15 14:54:53 +00:00
|
|
|
rm -rf ./docs/source-pytorch/notebooks
|
|
|
|
rm -rf ./docs/source-pytorch/generated
|
|
|
|
rm -rf ./docs/source-pytorch/*/generated
|
|
|
|
rm -rf ./docs/source-pytorch/api
|
|
|
|
rm -rf build
|
|
|
|
rm -rf dist
|
2022-06-15 00:54:55 +00:00
|
|
|
rm -rf *.egg-info
|
|
|
|
rm -rf src/*.egg-info
|
2023-02-21 15:01:30 +00:00
|
|
|
rm -rf src/lightning_fabric/*/
|
|
|
|
rm -rf src/pytorch_lightning/*/
|
2021-02-05 23:33:12 +00:00
|
|
|
|
|
|
|
test: clean
|
2022-05-09 13:25:53 +00:00
|
|
|
# Review the CONTRIBUTING documentation for other ways to test.
|
2022-09-26 10:27:46 +00:00
|
|
|
pip install -e . \
|
|
|
|
-r requirements/pytorch/base.txt \
|
2023-01-04 15:57:18 +00:00
|
|
|
-r requirements/fabric/base.txt \
|
2022-09-26 10:27:46 +00:00
|
|
|
-r requirements/pytorch/test.txt \
|
|
|
|
|
2021-02-15 19:05:49 +00:00
|
|
|
# run tests with coverage
|
2023-02-01 20:00:44 +00:00
|
|
|
python -m coverage run --source src/lightning/pytorch -m pytest src/lightning/pytorch tests/tests_pytorch -v
|
|
|
|
python -m coverage run --source src/lightning/fabric -m pytest src/lightning/fabric tests/tests_fabric -v
|
2021-02-01 16:09:12 +00:00
|
|
|
python -m coverage report
|
2020-11-12 09:25:31 +00:00
|
|
|
|
2023-09-22 06:45:53 +00:00
|
|
|
docs: docs-pytorch
|
|
|
|
|
2023-09-22 10:51:44 +00:00
|
|
|
sphinx-theme:
|
2023-09-05 18:38:02 +00:00
|
|
|
pip install -q awscli
|
2023-09-22 10:51:44 +00:00
|
|
|
mkdir -p dist/
|
2023-09-05 18:38:02 +00:00
|
|
|
aws s3 sync --no-sign-request s3://sphinx-packages/ dist/
|
2023-09-22 10:51:44 +00:00
|
|
|
pip install lai-sphinx-theme -f dist/
|
2023-09-22 06:45:53 +00:00
|
|
|
|
2023-09-22 10:51:44 +00:00
|
|
|
docs-fabric: clean sphinx-theme
|
|
|
|
pip install -e .[all] --quiet -r requirements/fabric/docs.txt
|
2023-09-22 06:45:53 +00:00
|
|
|
cd docs/source-fabric && $(MAKE) html --jobs $(nproc)
|
|
|
|
|
2023-09-22 10:51:44 +00:00
|
|
|
docs-pytorch: clean sphinx-theme
|
|
|
|
pip install -e .[all] --quiet -r requirements/pytorch/docs.txt -r _notebooks/.actions/requires.txt
|
2023-03-15 12:32:44 +00:00
|
|
|
cd docs/source-pytorch && $(MAKE) html --jobs $(nproc)
|
2022-01-16 04:08:11 +00:00
|
|
|
|
|
|
|
update:
|
|
|
|
git submodule update --init --recursive --remote
|