Add support for variable length dataloaders in DDP #7422
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR GPU tests | |
on: | |
pull_request_target: | |
workflow_dispatch: | |
# Cancel old runs when a new commit is pushed to the same branch if not on main | |
# or dev | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }} | |
jobs: | |
pytest-gpu-1: | |
uses: mosaicml/ci-testing/.github/workflows/[email protected] | |
strategy: | |
matrix: | |
include: | |
- name: gpu-3.11-2.3-1 | |
container: mosaicml/pytorch:2.3.1_cu121-python3.11-ubuntu20.04 | |
markers: not daily and not remote and gpu and (doctest or not doctest) | |
pytest_command: coverage run -m pytest | |
composer_package_name: mosaicml | |
name: ${{ matrix.name }} | |
if: github.repository_owner == 'mosaicml' | |
with: | |
composer_package_name: ${{ matrix.composer_package_name }} | |
container: ${{ matrix.container }} | |
git_repo: mosaicml/composer | |
mcloud-timeout: 2250 | |
name: ${{ matrix.name }} | |
pip_deps: "[all]" | |
pytest-command: ${{ matrix.pytest_command }} | |
pytest-markers: ${{ matrix.markers }} | |
python-version: 3.9 | |
gpu_num: 1 | |
secrets: | |
mcloud-api-key: ${{ secrets.MCLOUD_API_KEY }} | |
pytest-gpu-2: | |
uses: mosaicml/ci-testing/.github/workflows/[email protected] | |
strategy: | |
matrix: | |
include: | |
- name: gpu-3.11-2.3-2 | |
container: mosaicml/pytorch:2.3.1_cu121-python3.11-ubuntu20.04 | |
markers: not daily and not remote and gpu and (doctest or not doctest) | |
pytest_command: coverage run -m pytest | |
composer_package_name: mosaicml | |
name: ${{ matrix.name }} | |
if: github.repository_owner == 'mosaicml' | |
with: | |
composer_package_name: ${{ matrix.composer_package_name }} | |
container: ${{ matrix.container }} | |
git_repo: mosaicml/composer | |
mcloud-timeout: 2250 | |
name: ${{ matrix.name }} | |
pip_deps: "[all]" | |
pytest-command: ${{ matrix.pytest_command }} | |
pytest-markers: ${{ matrix.markers }} | |
python-version: 3.9 | |
gpu_num: 2 | |
secrets: | |
mcloud-api-key: ${{ secrets.MCLOUD_API_KEY }} | |
pytest-gpu-4: | |
uses: mosaicml/ci-testing/.github/workflows/[email protected] | |
strategy: | |
matrix: | |
include: | |
- name: gpu-3.11-2.3-4 | |
container: mosaicml/pytorch:2.3.1_cu121-python3.11-ubuntu20.04 | |
markers: not daily and not remote and gpu and (doctest or not doctest) | |
pytest_command: coverage run -m pytest | |
composer_package_name: mosaicml | |
name: ${{ matrix.name }} | |
if: github.repository_owner == 'mosaicml' | |
with: | |
composer_package_name: ${{ matrix.composer_package_name }} | |
container: ${{ matrix.container }} | |
git_repo: mosaicml/composer | |
mcloud-timeout: 2250 | |
name: ${{ matrix.name }} | |
pip_deps: "[all]" | |
pytest-command: ${{ matrix.pytest_command }} | |
pytest-markers: ${{ matrix.markers }} | |
python-version: 3.9 | |
gpu_num: 4 | |
secrets: | |
mcloud-api-key: ${{ secrets.MCLOUD_API_KEY }} |