| .PHONY: quality style test docs |
|
|
| check_dirs := tests src examples benchmarks |
|
|
| |
|
|
| extra_quality_checks: |
| python utils/check_copies.py |
| python utils/check_dummies.py |
| python utils/check_repo.py |
| doc-builder style src/accelerate docs/source --max_len 119 |
|
|
| |
| quality: |
| black --check $(check_dirs) |
| isort --check-only $(check_dirs) |
| flake8 $(check_dirs) |
| doc-builder style src/accelerate docs/source --max_len 119 --check_only |
|
|
| |
| style: |
| black $(check_dirs) |
| isort $(check_dirs) |
| doc-builder style src/accelerate docs/source --max_len 119 |
| |
| |
| test: |
| python -m pytest -s -v ./tests/ --ignore=./tests/test_examples.py $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_all.log",) |
|
|
| test_big_modeling: |
| python -m pytest -s -v ./tests/test_big_modeling.py $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_big_modeling.log",) |
|
|
| test_core: |
| python -m pytest -s -v ./tests/ --ignore=./tests/test_examples.py --ignore=./tests/deepspeed --ignore=./tests/test_big_modeling.py \ |
| --ignore=./tests/fsdp --ignore=./tests/test_cli.py $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_core.log",) |
|
|
| test_cli: |
| python -m pytest -s -v ./tests/test_cli.py $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_cli.log",) |
|
|
| test_deepspeed: |
| python -m pytest -s -v ./tests/deepspeed $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_deepspeed.log",) |
|
|
| test_fsdp: |
| python -m pytest -s -v ./tests/fsdp $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_fsdp.log",) |
|
|
| test_examples: |
| python -m pytest -s -v ./tests/test_examples.py $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_examples.log",) |
|
|
| |
| test_integrations: |
| python -m pytest -s -v ./tests/deepspeed ./tests/fsdp $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_integrations.log",) |
|
|
| test_example_differences: |
| python -m pytest -s -v ./tests/test_examples.py::ExampleDifferenceTests $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_example_diff.log",) |
|
|
| test_checkpoint_epoch: |
| python -m pytest -s -v ./tests/test_examples.py::FeatureExamplesTests -k "by_epoch" $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_checkpoint_epoch.log",) |
|
|
| test_checkpoint_step: |
| python -m pytest -s -v ./tests/test_examples.py::FeatureExamplesTests -k "by_step" $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_checkpoint_step.log",) |
|
|
| |
| test_prod: |
| $(MAKE) test_core |
|
|
| test_rest: |
| python -m pytest -s -v ./tests/test_examples.py::FeatureExamplesTests -k "not by_step and not by_epoch" $(if $(IS_GITHUB_CI),--report-log "$(PYTORCH_VERSION)_rest.log",) |
|
|