-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ethan/MCLOUD-4621
- Loading branch information
Showing
127 changed files
with
9,567 additions
and
4,595 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 5 |
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
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,23 +15,28 @@ concurrency: | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
jobs: | ||
pytest-cpu: | ||
uses: mosaicml/ci-testing/.github/workflows/[email protected] | ||
name: ${{ matrix.name }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- name: "cpu-2.3.0" | ||
container: mosaicml/pytorch:2.3.0_cpu-python3.11-ubuntu20.04 | ||
- 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" | ||
name: ${{ matrix.name }} | ||
if: github.repository_owner == 'mosaicml' | ||
with: | ||
container: ${{ matrix.container }} | ||
name: ${{ matrix.name }} | ||
pip_deps: "[all-cpu]" | ||
pytest-command: ${{ matrix.pytest_command }} | ||
pytest-markers: ${{ matrix.markers }} | ||
safe_directory: llm-foundry | ||
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 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,31 +9,95 @@ on: | |
- 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-gpu: | ||
uses: mosaicml/ci-testing/.github/workflows/[email protected] | ||
pytest-gpu-1: | ||
name: ${{ matrix.name }} | ||
if: github.repository_owner == 'mosaicml' | ||
runs-on: linux-ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: "gpu-2.3.0" | ||
container: mosaicml/pytorch:2.3.0_cu121-python3.11-ubuntu20.04 | ||
- name: "gpu-2.3.1-1" | ||
container: mosaicml/llm-foundry:2.3.1_cu121-latest | ||
markers: "gpu" | ||
pip_deps: "[all]" | ||
pytest_command: "coverage run -m pytest" | ||
ci_repo_gpu_test_ref: v0.1.0 | ||
steps: | ||
- name: Run PR GPU Tests | ||
uses: mosaicml/ci-testing/.github/actions/[email protected] | ||
with: | ||
container: ${{ matrix.container }} | ||
git_repo: mosaicml/llm-foundry | ||
mcloud_timeout: 1800 | ||
name: ${{ matrix.name }} | ||
pip_deps: ${{ matrix.pip_deps }} | ||
pytest_command: ${{ matrix.pytest_command }} | ||
pytest_markers: ${{ matrix.markers }} | ||
python_version: 3.9 | ||
gpu_num: 1 | ||
mcloud_api_key: ${{ secrets.MCLOUD_API_KEY }} | ||
ci_repo_gpu_test_ref: ${{ matrix.ci_repo_gpu_test_ref }} | ||
pytest-gpu-2: | ||
name: ${{ matrix.name }} | ||
if: github.repository_owner == 'mosaicml' | ||
runs-on: linux-ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: "gpu-2.3.1-2" | ||
container: mosaicml/llm-foundry:2.3.1_cu121-latest | ||
markers: "gpu" | ||
pip_deps: "[all]" | ||
pytest_command: "coverage run -m pytest" | ||
ci_repo_gpu_test_ref: v0.1.0 | ||
steps: | ||
- name: Run PR GPU Tests | ||
uses: mosaicml/ci-testing/.github/actions/[email protected] | ||
with: | ||
container: ${{ matrix.container }} | ||
git_repo: mosaicml/llm-foundry | ||
mcloud_timeout: 1800 | ||
name: ${{ matrix.name }} | ||
pip_deps: ${{ matrix.pip_deps }} | ||
pytest_command: ${{ matrix.pytest_command }} | ||
pytest_markers: ${{ matrix.markers }} | ||
python_version: 3.9 | ||
gpu_num: 2 | ||
mcloud_api_key: ${{ secrets.MCLOUD_API_KEY }} | ||
ci_repo_gpu_test_ref: ${{ matrix.ci_repo_gpu_test_ref }} | ||
pytest-gpu-4: | ||
name: ${{ matrix.name }} | ||
if: github.repository_owner == 'mosaicml' | ||
with: | ||
container: ${{ matrix.container }} | ||
git_repo: mosaicml/llm-foundry | ||
mcloud-timeout: 1800 | ||
name: ${{ matrix.name }} | ||
pip_deps: ${{ matrix.pip_deps }} | ||
pytest-command: ${{ matrix.pytest_command }} | ||
pytest-markers: ${{ matrix.markers }} | ||
python-version: 3.9 | ||
secrets: | ||
mcloud-api-key: ${{ secrets.MCLOUD_API_KEY }} | ||
runs-on: linux-ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: "gpu-2.3.1-4" | ||
container: mosaicml/llm-foundry:2.3.1_cu121-latest | ||
markers: "gpu" | ||
pip_deps: "[all]" | ||
pytest_command: "coverage run -m pytest" | ||
ci_repo_gpu_test_ref: v0.1.0 | ||
steps: | ||
- name: Run PR GPU Tests | ||
uses: mosaicml/ci-testing/.github/actions/[email protected] | ||
with: | ||
container: ${{ matrix.container }} | ||
git_repo: mosaicml/llm-foundry | ||
mcloud_timeout: 1800 | ||
name: ${{ matrix.name }} | ||
pip_deps: ${{ matrix.pip_deps }} | ||
pytest_command: ${{ matrix.pytest_command }} | ||
pytest_markers: ${{ matrix.markers }} | ||
python_version: 3.9 | ||
gpu_num: 4 | ||
mcloud_api_key: ${{ secrets.MCLOUD_API_KEY }} | ||
ci_repo_gpu_test_ref: ${{ matrix.ci_repo_gpu_test_ref }} |
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
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
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
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
Oops, something went wrong.