2022-09-01 22:13:12 +00:00
|
|
|
# Python package
|
|
|
|
# Create and test a Python package on multiple Python versions.
|
|
|
|
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
|
|
|
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
tags:
|
|
|
|
include:
|
|
|
|
- '*'
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- "master"
|
|
|
|
- "release/*"
|
|
|
|
- "refs/tags/*"
|
|
|
|
|
|
|
|
pr:
|
2022-09-05 17:11:12 +00:00
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- "master"
|
|
|
|
- "release/*"
|
|
|
|
paths:
|
|
|
|
include:
|
2022-11-22 19:04:29 +00:00
|
|
|
- ".actions/**"
|
2023-01-04 15:57:18 +00:00
|
|
|
- ".azure/gpu-tests-fabric.yml"
|
|
|
|
- "examples/fabric/**"
|
|
|
|
- "examples/run_fabric_examples.sh"
|
|
|
|
- "tests/tests_fabric/run_standalone_*.sh"
|
2023-01-05 20:35:56 +00:00
|
|
|
- "tests/tests_pytorch/run_standalone_tests.sh" # used by fabric through a symlink
|
2023-01-04 15:57:18 +00:00
|
|
|
- "requirements/fabric/**"
|
2023-03-06 17:19:50 +00:00
|
|
|
- "src/lightning/__about__.py"
|
|
|
|
- "src/lightning/__init__.py"
|
|
|
|
- "src/lightning/__main__.py"
|
|
|
|
- "src/lightning/__setup__.py"
|
|
|
|
- "src/lightning/__version__.py"
|
2023-02-01 17:18:32 +00:00
|
|
|
- "src/lightning/fabric/**"
|
|
|
|
- "src/lightning_fabric/*"
|
2023-01-04 15:57:18 +00:00
|
|
|
- "tests/tests_fabric/**"
|
2023-01-19 16:48:28 +00:00
|
|
|
- "pyproject.toml" # includes pytest config
|
2022-11-22 01:25:01 +00:00
|
|
|
exclude:
|
2022-11-26 01:16:48 +00:00
|
|
|
- "requirements/*/docs.txt"
|
2022-11-22 01:25:01 +00:00
|
|
|
- "*.md"
|
|
|
|
- "**/*.md"
|
2022-09-01 22:13:12 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: testing
|
|
|
|
# how long to run the job before automatically cancelling
|
|
|
|
timeoutInMinutes: "20"
|
|
|
|
# how much time to give 'run always even if cancelled tasks' before stopping them
|
|
|
|
cancelTimeoutInMinutes: "2"
|
2022-10-05 10:43:54 +00:00
|
|
|
pool: lit-rtx-3090
|
|
|
|
variables:
|
|
|
|
DEVICES: $( python -c 'print("$(Agent.Name)".split("_")[-1])' )
|
2023-02-09 13:39:03 +00:00
|
|
|
FREEZE_REQUIREMENTS: "1"
|
2023-03-02 22:17:29 +00:00
|
|
|
PIP_CACHE_DIR: "/var/tmp/pip"
|
2022-09-01 22:13:12 +00:00
|
|
|
container:
|
2023-03-21 12:31:05 +00:00
|
|
|
image: "pytorchlightning/pytorch_lightning:base-cuda-py3.10-torch2.0-cuda11.7.1"
|
2022-09-01 22:13:12 +00:00
|
|
|
# default shm size is 64m. Increase it to avoid:
|
|
|
|
# 'Error while creating shared memory: unhandled system error, NCCL version 2.7.8'
|
2023-03-02 22:17:29 +00:00
|
|
|
options: "--gpus=all --shm-size=2gb -v /var/tmp:/var/tmp"
|
2023-02-09 13:39:03 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
'pkg: Fabric':
|
|
|
|
PACKAGE_NAME: "fabric"
|
|
|
|
'pkg: Lightning':
|
|
|
|
PACKAGE_NAME: "lightning"
|
2022-09-01 22:13:12 +00:00
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
|
|
|
- bash: |
|
2022-11-12 14:58:37 +00:00
|
|
|
echo "##vso[task.setvariable variable=CUDA_VISIBLE_DEVICES]$(DEVICES)"
|
|
|
|
cuda_ver=$(python -c "import torch ; print(''.join(map(str, torch.version.cuda.split('.')[:2])))")
|
2023-03-03 17:48:49 +00:00
|
|
|
echo "##vso[task.setvariable variable=CUDA_VERSION_MM]$cuda_ver"
|
2022-11-12 14:58:37 +00:00
|
|
|
echo "##vso[task.setvariable variable=TORCH_URL]https://download.pytorch.org/whl/cu${cuda_ver}/torch_stable.html"
|
2023-04-24 23:31:47 +00:00
|
|
|
scope=$(python -c 'n = "$(PACKAGE_NAME)" ; print(dict(fabric="lightning_fabric").get(n, n))')
|
2023-02-20 14:58:44 +00:00
|
|
|
echo "##vso[task.setvariable variable=COVERAGE_SOURCE]$scope"
|
2022-11-12 14:58:37 +00:00
|
|
|
displayName: 'set env. vars'
|
|
|
|
|
|
|
|
- bash: |
|
2023-02-09 13:39:03 +00:00
|
|
|
echo $(DEVICES)
|
2022-11-12 14:58:37 +00:00
|
|
|
echo $CUDA_VISIBLE_DEVICES
|
2023-03-03 17:48:49 +00:00
|
|
|
echo $CUDA_VERSION_MM
|
2022-11-12 14:58:37 +00:00
|
|
|
echo $TORCH_URL
|
2023-02-20 14:58:44 +00:00
|
|
|
echo $COVERAGE_SOURCE
|
2022-09-01 22:13:12 +00:00
|
|
|
whereis nvidia
|
|
|
|
nvidia-smi
|
|
|
|
which python && which pip
|
|
|
|
python --version
|
|
|
|
pip --version
|
|
|
|
pip list
|
|
|
|
displayName: 'Image info & NVIDIA'
|
|
|
|
|
2022-10-05 10:43:54 +00:00
|
|
|
- bash: |
|
2022-11-12 14:58:37 +00:00
|
|
|
PYTORCH_VERSION=$(python -c "import torch; print(torch.__version__.split('+')[0])")
|
2023-05-29 19:34:04 +00:00
|
|
|
pip install -q wget packaging
|
|
|
|
python -m wget https://raw.githubusercontent.com/Lightning-AI/utilities/main/scripts/adjust-torch-versions.py
|
2022-12-22 06:21:52 +00:00
|
|
|
for fpath in `ls requirements/**/*.txt`; do \
|
2023-05-29 19:34:04 +00:00
|
|
|
python ./adjust-torch-versions.py $fpath ${PYTORCH_VERSION}; \
|
2022-12-22 06:21:52 +00:00
|
|
|
done
|
2022-11-12 14:58:37 +00:00
|
|
|
displayName: 'Adjust dependencies'
|
2022-10-05 10:43:54 +00:00
|
|
|
|
2023-04-24 23:31:47 +00:00
|
|
|
- bash: |
|
|
|
|
extra=$(python -c "print({'lightning': 'fabric-'}.get('$(PACKAGE_NAME)', ''))")
|
|
|
|
pip install -e ".[${extra}dev]" pytest-timeout -U --find-links ${TORCH_URL}
|
2022-10-31 13:10:08 +00:00
|
|
|
displayName: 'Install package & dependencies'
|
2022-09-01 22:13:12 +00:00
|
|
|
|
|
|
|
- bash: |
|
|
|
|
set -e
|
|
|
|
python requirements/collect_env_details.py
|
2022-10-05 10:43:54 +00:00
|
|
|
python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu == 2, f'GPU: {mgpu}'"
|
2022-09-01 22:13:12 +00:00
|
|
|
displayName: 'Env details'
|
|
|
|
|
2023-02-09 13:39:03 +00:00
|
|
|
- bash: python -m pytest lightning_fabric
|
|
|
|
workingDirectory: src
|
|
|
|
condition: eq(variables['PACKAGE_NAME'], 'fabric')
|
|
|
|
displayName: 'Testing: Fabric doctests'
|
|
|
|
|
2023-02-01 20:34:38 +00:00
|
|
|
- bash: |
|
|
|
|
pip install -q -r .actions/requirements.txt
|
2023-02-10 10:30:42 +00:00
|
|
|
python .actions/assistant.py copy_replace_imports --source_dir="./tests/tests_fabric" \
|
|
|
|
--source_import="lightning.fabric" \
|
|
|
|
--target_import="lightning_fabric"
|
|
|
|
python .actions/assistant.py copy_replace_imports --source_dir="./examples/fabric" \
|
|
|
|
--source_import="lightning.fabric" \
|
|
|
|
--target_import="lightning_fabric"
|
2023-02-09 13:39:03 +00:00
|
|
|
condition: eq(variables['PACKAGE_NAME'], 'fabric')
|
|
|
|
displayName: 'Adjust tests & examples'
|
2023-02-01 20:34:38 +00:00
|
|
|
|
2023-05-24 23:16:41 +00:00
|
|
|
- bash: python -m coverage run --source ${COVERAGE_SOURCE} -m pytest -v --durations=50
|
2023-02-09 13:39:03 +00:00
|
|
|
workingDirectory: tests/tests_fabric
|
2022-09-01 22:13:12 +00:00
|
|
|
env:
|
|
|
|
PL_RUN_CUDA_TESTS: "1"
|
2023-01-05 20:35:56 +00:00
|
|
|
displayName: 'Testing: fabric standard'
|
2022-09-01 22:13:12 +00:00
|
|
|
timeoutInMinutes: "10"
|
|
|
|
|
|
|
|
- bash: bash run_standalone_tests.sh
|
2023-01-04 15:57:18 +00:00
|
|
|
workingDirectory: tests/tests_fabric
|
2022-09-01 22:13:12 +00:00
|
|
|
env:
|
|
|
|
PL_RUN_CUDA_TESTS: "1"
|
2023-02-20 14:58:44 +00:00
|
|
|
PL_STANDALONE_TESTS_SOURCE: $(COVERAGE_SOURCE)
|
2023-01-05 20:35:56 +00:00
|
|
|
displayName: 'Testing: fabric standalone tests'
|
2022-09-01 22:13:12 +00:00
|
|
|
timeoutInMinutes: "10"
|
|
|
|
|
|
|
|
- bash: |
|
|
|
|
python -m coverage report
|
|
|
|
python -m coverage xml
|
|
|
|
python -m coverage html
|
2023-04-12 15:24:48 +00:00
|
|
|
|
|
|
|
# https://docs.codecov.com/docs/codecov-uploader
|
|
|
|
curl -Os https://uploader.codecov.io/latest/linux/codecov
|
|
|
|
chmod +x codecov
|
|
|
|
./codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) \
|
2023-02-20 14:58:44 +00:00
|
|
|
--flags=gpu,pytest,${COVERAGE_SOURCE} --name="GPU-coverage" --env=linux,azure
|
2022-09-01 22:13:12 +00:00
|
|
|
ls -l
|
2023-01-04 15:57:18 +00:00
|
|
|
workingDirectory: tests/tests_fabric
|
2022-09-01 22:13:12 +00:00
|
|
|
displayName: 'Statistics'
|
|
|
|
|
2022-11-10 09:16:46 +00:00
|
|
|
- script: |
|
|
|
|
set -e
|
2023-01-04 15:57:18 +00:00
|
|
|
bash run_fabric_examples.sh --accelerator=cuda --devices=1
|
|
|
|
bash run_fabric_examples.sh --accelerator=cuda --devices=2 --strategy ddp
|
2022-11-10 09:16:46 +00:00
|
|
|
workingDirectory: examples
|
2023-01-05 20:35:56 +00:00
|
|
|
displayName: 'Testing: fabric examples'
|