-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'unifyai:main' into main
- Loading branch information
Showing
38 changed files
with
539 additions
and
218 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Dockerfile Mutiversion Push | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Ivy 🛎 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and push Dockerfile | ||
run: | | ||
docker build --progress=plain --no-cache -t unifyai/multiversion:latest -f docker/DockerfileMultiversion . | ||
docker push unifyai/multiversion:latest |
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,56 @@ | ||
name: Check Semantic and welcome new contributors | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- reopened | ||
workflow_call: | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
pr-compliance-checks: | ||
name: PR Compliance Checks | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: mtfoley/[email protected] | ||
with: | ||
body-auto-close: false | ||
protected-branch-auto-close: false | ||
body-comment: > | ||
## Issue Reference | ||
In order to be considered for merging, the pull request description must refer to a | ||
specific issue number. This is described in our | ||
[contributing guide](https://unify.ai/docs/ivy/overview/contributing/the_basics.html#todo-list-issues) and our PR template. | ||
This check is looking for a phrase similar to: "Fixes #XYZ" or "Resolves #XYZ" where XYZ is the issue | ||
number that this PR is meant to address. | ||
welcome: | ||
name: Welcome | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
needs: semantics | ||
if: github.event.action == 'opened' | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-message: |- | ||
Congrats on making your first Pull Request and thanks for supporting Ivy! 🎉 | ||
Join the conversation in our [Discord](https://discord.com/invite/sXyFF8tDtm) | ||
Here are some notes to understand our tests: | ||
- We have merged all the tests in one file called \`display_test_results\` job. 👀 It contains the following two sections: | ||
- **Combined Test Results:** This shows the results of all the ivy tests that ran on the PR. ✔️ | ||
- **New Failures Introduced:** This lists the tests that fails on this PR. | ||
Please make sure they are passing. 💪 | ||
Keep in mind that we will assign an engineer for this task and they will look at it based on the workload that they have, so be patient. |
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 |
---|---|---|
@@ -1,11 +1,34 @@ | ||
|
||
{ | ||
"tensorflow": [ | ||
{"tensorflow-probability":{"2.12.0":"0.20.0","2.11.0":"0.19.0"}} | ||
], | ||
"jax": ["dm-haiku", "flax",{"jaxlib": {"0.4.10": "0.4.10","0.4.8": "0.4.7"}}], | ||
"numpy": ["numpy"], | ||
"paddle": ["paddlepaddle"], | ||
"mxnet": ["mxnet"], | ||
"torch": ["torch-scatter"] | ||
"tensorflow": [ | ||
{ | ||
"tensorflow-probability": { | ||
"2.13.0": "0.21.0", | ||
"2.12.0": "0.20.0", | ||
"2.11.0": "0.19.0" | ||
} | ||
} | ||
], | ||
"jax": [ | ||
"dm-haiku", | ||
"flax", | ||
{ | ||
"jaxlib": { | ||
"0.4.14": "0.4.14", | ||
"0.4.10": "0.4.10", | ||
"0.4.8": "0.4.7" | ||
} | ||
} | ||
], | ||
"numpy": [ | ||
"numpy" | ||
], | ||
"paddle": [ | ||
"paddlepaddle" | ||
], | ||
"mxnet": [ | ||
"mxnet" | ||
], | ||
"torch": [ | ||
"torch-scatter" | ||
] | ||
} |
Submodule demos
updated
from 44432c to 8163e5
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
Binary file modified
BIN
+1.89 KB
(100%)
ivy/engines/XLA/rust_api/python_frontend/stateful_layers.cpython-310-x86_64-linux-gnu.so
100644 → 100755
Binary file not shown.
Binary file modified
BIN
+42.2 KB
(100%)
ivy/engines/XLA/rust_api/python_frontend/xla_core.cpython-310-x86_64-linux-gnu.so
100644 → 100755
Binary file not shown.
Binary file not shown.
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.