add time units to throughput metrics and also secs_per_step metric. #8186
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: | |
pull_request: | |
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-cpu: | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
container: ${{ matrix.container }} | |
if: github.repository_owner == 'mosaicml' | |
strategy: | |
matrix: | |
include: | |
- name: cpu-3.11-2.3 | |
container: mosaicml/pytorch:2.3.1_cpu-python3.11-ubuntu20.04 | |
markers: not daily and not remote and not gpu and not doctest | |
pytest_command: coverage run -m pytest | |
- name: cpu-3.11-2.4 | |
container: mosaicml/pytorch:2.4.1_cpu-python3.11-ubuntu20.04 | |
markers: not daily and not remote and not gpu and not doctest | |
pytest_command: coverage run -m pytest | |
- name: cpu-3.11-2.5 | |
container: mosaicml/pytorch:2.5.0_cpu-python3.11-ubuntu20.04 | |
markers: not daily and not remote and not gpu and not doctest | |
pytest_command: coverage run -m pytest | |
- name: cpu-doctest | |
container: mosaicml/pytorch:2.5.0_cpu-python3.11-ubuntu20.04 | |
markers: not daily and not remote and not gpu and doctest | |
pytest_command: coverage run -m pytest tests/test_docs.py | |
steps: | |
- name: Run PR CPU Tests | |
uses: mosaicml/ci-testing/.github/actions/[email protected] | |
with: | |
name: ${{ matrix.name }} | |
pip_deps: "[all]" | |
pytest_command: ${{ matrix.pytest_command }} | |
pytest_markers: ${{ matrix.markers }} | |
safe_directory: composer | |
composer_package_name: mosaicml | |
container: ${{ inputs.container }} | |
coverage: | |
uses: ./.github/workflows/coverage.yaml | |
name: Coverage Results | |
if: github.repository_owner == 'mosaicml' | |
needs: [pytest-cpu] | |
with: | |
download-path: artifacts |