-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into improve_neighbor_allreduce
- Loading branch information
Showing
3 changed files
with
113 additions
and
3 deletions.
There are no files selected for viewing
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,55 @@ | ||
name: Continuous Integration | ||
|
||
on: [push] | ||
|
||
jobs: | ||
ubuntu-unit-test: | ||
|
||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
mpi-vendor: ['openmpi', 'mpich'] | ||
python-version: [3.7, 3.8] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install MPI | ||
run: ./scripts/install_mpi.sh ${{ matrix.mpi-vendor }} | ||
- name: Install BlueFog | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r requirements.txt | ||
git submodule update --init --recursive | ||
python -m pip install -e . | ||
- name: Unit Test | ||
run: make test_torch_basic test_torch_ops | ||
|
||
macos-unit-test: | ||
|
||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
mpi-vendor: ['openmpi', 'mpich'] | ||
python-version: [3.7, 3.8] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install MPI | ||
run: ./scripts/install_mpi.sh ${{ matrix.mpi-vendor }} | ||
- name: Install BlueFog | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r requirements.txt | ||
git submodule update --init --recursive | ||
python -m pip install -e . | ||
- name: Unit Test | ||
run: NUM_PROC=2 make test_torch_basic test_torch_ops test_torch_win_ops | ||
|
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,34 @@ | ||
name: Document CI | ||
|
||
on: | ||
release: | ||
types: [create, edited, prereleased, published] | ||
|
||
jobs: | ||
github-page: | ||
|
||
runs-on: ubuntu-18.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install OpenMPI | ||
run: | | ||
sudo apt-get install -y -q openmpi-bin libopenmpi-dev | ||
- name: Install BlueFog | ||
run: | | ||
git submodule update --init --recursive | ||
python -m pip install -e . | ||
- name: Build Document | ||
run: | | ||
python -m pip install matplotlib sphinx sphinx_rtd_theme | ||
cd docs && make html | ||
touch _build/html/.nojekyll | ||
- name: Deploy Github Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs/_build/html |
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