2021-02-10 09:43:26 +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 :
2021-02-18 21:41:16 +00:00
tags :
include :
- '*'
2021-02-10 09:43:26 +00:00
branches :
include :
- master
- release/*
2021-02-18 21:41:16 +00:00
- refs/tags/*
2021-02-10 09:43:26 +00:00
pr :
- master
- release/*
2021-02-10 20:21:20 +00:00
jobs :
- job : pytest
# how long to run the job before automatically cancelling
timeoutInMinutes : 45
# how much time to give 'run always even if cancelled tasks' before stopping them
cancelTimeoutInMinutes : 2
2021-02-10 09:43:26 +00:00
2021-03-01 21:14:55 +00:00
pool : gridai-spot-pool
2021-02-10 09:43:26 +00:00
2021-02-10 20:21:20 +00:00
# ToDo: this need to have installed docker in the base image...
container :
# base ML image: mcr.microsoft.com/azureml/openmpi3.1.2-cuda10.2-cudnn8-ubuntu18.04
2021-06-24 16:56:43 +00:00
# run on torch 1.8 as it's the LTS version
image : "pytorchlightning/pytorch_lightning:base-cuda-py3.7-torch1.8"
# default shm size is 64m. Increase it to avoid:
# 'Error while creating shared memory: unhandled system error, NCCL version 2.7.8'
options : "--runtime=nvidia -e NVIDIA_VISIBLE_DEVICES=all --shm-size=256m"
2021-02-10 09:43:26 +00:00
2021-02-10 20:21:20 +00:00
workspace :
clean : all
2021-02-10 09:43:26 +00:00
2021-02-10 20:21:20 +00:00
steps :
2021-02-10 09:43:26 +00:00
2021-02-10 20:21:20 +00:00
- bash : |
lspci | egrep 'VGA|3D'
whereis nvidia
nvidia-smi
python --version
pip --version
pip list
displayName : 'Image info & NVIDIA'
2021-02-10 09:43:26 +00:00
2021-02-10 20:21:20 +00:00
- bash : |
python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if 'horovod' not in line] ; open(fname, 'w').writelines(lines)"
2021-05-21 11:35:12 +00:00
pip install fairscale>=0.3.4
2021-06-14 16:38:28 +00:00
pip install deepspeed>=0.4.0 -U
2021-05-21 11:35:12 +00:00
pip install . --requirement requirements/devel.txt
2021-02-10 20:21:20 +00:00
pip list
displayName : 'Install dependencies'
2021-02-10 09:43:26 +00:00
2021-02-19 21:45:53 +00:00
- bash : |
2021-02-10 20:21:20 +00:00
python tests/collect_env_details.py
2021-02-19 21:45:53 +00:00
python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu >= 2, f'GPU: {mgpu}'"
2021-02-10 20:21:20 +00:00
displayName : 'Env details'
2021-02-10 09:43:26 +00:00
2021-02-10 20:21:20 +00:00
- bash : |
wget https://pl-public-data.s3.amazonaws.com/legacy/checkpoints.zip -P legacy/
unzip -o legacy/checkpoints.zip -d legacy/
ls -l legacy/checkpoints/
displayName : 'Get legacy checkpoints'
2021-02-10 09:43:26 +00:00
2021-02-19 21:45:53 +00:00
- bash : |
2021-03-23 22:05:04 +00:00
python -m coverage run --source pytorch_lightning -m pytest pytorch_lightning tests -v --junitxml=$(Build.StagingDirectory)/test-results.xml --durations=50
2021-02-10 20:21:20 +00:00
displayName: 'Testing : standard'
2021-02-17 20:23:42 +00:00
- bash : |
2021-03-26 17:04:59 +00:00
bash tests/special_tests.sh
2021-02-10 20:21:20 +00:00
displayName: 'Testing : special'
- bash : |
python -m coverage report
python -m coverage xml
2021-03-15 14:38:40 +00:00
python -m coverage html
python -m codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) --flags=gpu,pytest --name="GPU-coverage" --env=linux,azure
ls -l
2021-02-10 20:21:20 +00:00
displayName : 'Statistics'
2021-03-15 14:38:40 +00:00
- task : PublishTestResults@2
displayName : 'Publish test results'
inputs :
testResultsFiles : '$(Build.StagingDirectory)/test-results.xml'
testRunTitle : '$(Agent.OS) - $(Build.DefinitionName) - Python $(python.version)'
condition : succeededOrFailed()
- task : PublishCodeCoverageResults@1
displayName : 'Publish coverage report'
inputs :
codeCoverageTool : 'cobertura'
summaryFileLocation : 'coverage.xml'
reportDirectory : '$(Build.SourcesDirectory)/htmlcov'
testRunTitle : '$(Agent.OS) - $(Build.BuildNumber)[$(Agent.JobName)] - Python $(python.version)'
condition : succeededOrFailed()
2021-02-19 21:45:53 +00:00
- bash : |
2021-03-04 16:48:17 +00:00
python -m pytest benchmarks -v --maxfail=2 --durations=0
displayName: 'Testing : benchmarks'
2021-03-20 18:58:59 +00:00
- script : |
set -e
2021-03-05 16:50:21 +00:00
python -m pytest pl_examples -v --maxfail=2 --durations=0
2021-07-06 12:14:04 +00:00
bash pl_examples/run_examples.sh --trainer.gpus=1
bash pl_examples/run_examples.sh --trainer.gpus=2 --trainer.accelerator=ddp
bash pl_examples/run_examples.sh --trainer.gpus=2 --trainer.accelerator=ddp --trainer.precision=16
2021-03-22 16:49:01 +00:00
env :
PL_USE_MOCKED_MNIST : "1"
2021-07-06 12:14:04 +00:00
displayName: 'Testing : examples'