Skip to content

Commit

Permalink
Merge branch 'feature/profile' of github.com:argonne-lcf/Megatron-Dee…
Browse files Browse the repository at this point in the history
…pSpeed into feature/profile
  • Loading branch information
zhenghh04 committed Oct 14, 2024
2 parents 43fc2fe + bec9b7a commit 94d5337
Show file tree
Hide file tree
Showing 71 changed files with 6,492 additions and 2,645 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: python

on:
workflow_dispatch:
pull_request:
branches:
'**'
schedule:
- cron: "0 0 * * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
unit-tests:
strategy:
matrix:
pyVersion: ["3.7", "3.8", "3.9", "3.10"]
fail-fast: false

runs-on: ubuntu-22.04
container:
image: deepspeed/gh-builder:py${{ matrix.pyVersion }}

steps:
- uses: actions/checkout@v4

- name: environment
run: |
which python
python --version
- name: Install Megatron-DeepSpeed
run: |
pip3 install .
Loading

0 comments on commit 94d5337

Please sign in to comment.