fix the bug when resume rng_state with diffuerent gpu numbers. #113
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: ci | |
on: | |
pull_request: | |
push: | |
branches: [main, feat/Sana-public, feat/Sana-public-for-NVLab] | |
concurrency: | |
group: ci-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# if: ${{ github.repository == 'Efficient-Large-Model/Sana' }} | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10.10 | |
- name: Test pre-commit hooks | |
uses: pre-commit/[email protected] | |
tests-bash: | |
# needs: pre-commit | |
runs-on: self-hosted | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10.10 | |
- name: Set up the environment | |
run: | | |
bash environment_setup.sh | |
- name: Run tests with Slurm | |
run: | | |
sana-run --pty -m ci -J tests-bash bash tests/bash/entry.sh | |
# tests-python: | |
# needs: pre-commit | |
# runs-on: self-hosted | |
# steps: | |
# - name: Check out Git repository | |
# uses: actions/checkout@v4 | |
# - name: Set up Python | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: 3.10.10 | |
# - name: Set up the environment | |
# run: | | |
# ./environment_setup.sh | |
# - name: Run tests with Slurm | |
# run: | | |
# sana-run --pty -m ci -J tests-python pytest tests/python |