-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'mars/master' into ray_channel_first_com…
…plied # Conflicts: # mars/oscar/backends/ray/communication.py
- Loading branch information
Showing
256 changed files
with
10,992 additions
and
2,744 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
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 |
---|---|---|
|
@@ -16,3 +16,4 @@ | |
*.json text | ||
*.yaml text | ||
*.yml text | ||
mars/_version.py export-subst |
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,60 @@ | ||
name: Mars Continuous Benchmark | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
asv-benchmarks: | ||
name: ASV Benchmarks | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
concurrency: | ||
# https://git.luolix.topmunity/t/concurrecy-not-work-for-push/183068/7 | ||
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-asv-benchmarks | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up conda 3.8 | ||
env: | ||
PYTHON: 3.8 | ||
shell: bash | ||
run: | | ||
source ./ci/install-conda.sh | ||
python -m pip install --upgrade pip setuptools wheel coverage; | ||
- name: Install dependencies | ||
id: build | ||
run: | | ||
source ./ci/reload-env.sh | ||
export DEFAULT_VENV=$VIRTUAL_ENV | ||
pip install numpy scipy cython oss2 asv | ||
pip install -e ".[dev,extra]" | ||
- name: Run ASV benchmarks | ||
run: | | ||
source ./ci/reload-env.sh | ||
cd asv_bench | ||
asv check -E existing | ||
git remote add upstream https://github.com/mars-project/mars.git | ||
git fetch upstream | ||
asv machine --yes | ||
asv continuous -f 1.1 upstream/master HEAD | ||
if: ${{ steps.build.outcome == 'success' }} | ||
|
||
- name: Publish benchmarks artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Benchmarks log | ||
path: asv_bench/benchmarks.log | ||
if: failure() |
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
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.