Bump composer to 0.24.1 + FSDP config device_mesh deprecation #7733
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 CPU tests | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
- release/* | |
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' }} | |
jobs: | |
pytest-cpu: | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- name: "cpu-2.3.1" | |
pip_deps: "[all-cpu]" | |
container: mosaicml/pytorch:2.3.1_cpu-python3.11-ubuntu20.04 | |
markers: "not gpu" | |
pytest_command: "coverage run -m pytest" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run PR CPU Tests | |
uses: mosaicml/ci-testing/.github/actions/[email protected] | |
with: | |
name: ${{ matrix.name }} | |
container: ${{ matrix.container }} | |
pip_deps: ${{ matrix.pip_deps }} | |
pytest_command: ${{ matrix.pytest_command }} | |
pytest_markers: ${{ matrix.markers }} | |
safe_directory: llm-foundry | |
coverage: | |
uses: ./.github/workflows/coverage.yaml | |
name: Coverage Results | |
if: github.repository_owner == 'mosaicml' | |
needs: [pytest-cpu] | |
with: | |
download-path: artifacts |