-
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 'main' into paddle_frontend_math_mod
- Loading branch information
Showing
633 changed files
with
29,495 additions
and
14,025 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,61 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.236.0/containers/docker-existing-dockerfile | ||
{ | ||
"name": "Ivy Apple Silicon Development Environment (build)", | ||
|
||
"build": { | ||
"dockerfile": "../../docker/DockerfileAppleSilicon", | ||
"context": "../..", | ||
"args": { | ||
"pycon": ["3.10"] | ||
} | ||
}, | ||
|
||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python" | ||
], | ||
"settings": { | ||
"python.defaultInterpreterPath": "/opt/miniconda/envs/multienv/bin/python3" | ||
} | ||
} | ||
}, | ||
|
||
"postCreateCommand": { | ||
"post_create": "bash .devcontainer/post_create_commands.sh", | ||
"bashrc": "echo \"alias python=python3\" >> ~/.bashrc" | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Uncomment the next line to run commands after the container is created - for example installing curl. | ||
|
||
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust | ||
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], | ||
|
||
// Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker. | ||
// "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ], | ||
|
||
// Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root. | ||
// "remoteUser": "vscode", | ||
"features": { | ||
"ghcr.io/devcontainers/features/common-utils:2": { | ||
"installZsh": true, | ||
"configureZshAsDefaultShell": true, | ||
"installOhMyZsh": true, | ||
"upgradePackages": false | ||
}, | ||
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": { | ||
"moby": true, | ||
"installDockerBuildx": true, | ||
"version": "20.10", | ||
"dockerDashComposeVersion": "v2" | ||
}, | ||
"ghcr.io/devcontainers/features/github-cli:1": { | ||
"installDirectlyFromGitHubRelease": true, | ||
"version": "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
File renamed without changes.
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
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,11 +1,18 @@ | ||
name: array-api-determine-test-coverage | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "30 20 * * 6" | ||
|
||
permissions: | ||
actions: read | ||
jobs: | ||
determine_coverage: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branch: [ 1, 2, 3, 4 ] | ||
steps: | ||
- name: Checkout Ivy 🛎 | ||
uses: actions/checkout@v2 | ||
|
@@ -19,7 +26,7 @@ jobs: | |
run: | | ||
pip install pydriller tqdm | ||
cd ivy | ||
python run_tests_CLI/array_api_det_coverage.py | ||
python scripts/determine_tests/array_api_det_coverage.py ${{ matrix.branch }} | ||
cd .. | ||
mkdir tests | ||
cp ivy/tests.pbz2 tests/ | ||
|
@@ -32,6 +39,6 @@ jobs: | |
source-directory: tests/ | ||
destination-github-username: 'unifyai' | ||
destination-repository-name: 'Mapping' | ||
user-email: [email protected] | ||
user-email: [email protected] | ||
commit-message: Update Array API Tests Mapping | ||
target-branch: main | ||
target-branch: main${{ matrix.branch }} |
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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
name: pypi | ||
name: release-binaries | ||
on: | ||
workflow_call: | ||
jobs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️Binaries | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: unifyai/binaries | ||
path: binaries | ||
persist-credentials: false | ||
release-binaries: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️Binaries | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: unifyai/binaries | ||
path: binaries | ||
persist-credentials: false | ||
|
||
- name: Add Tag to Binaries | ||
run: | | ||
cd binaries | ||
git tag ${{ github.ref_name }} | ||
git push origin ${{ github.ref_name }} | ||
- name: Add Tag to Binaries | ||
run: | | ||
cd binaries | ||
git tag ${{ github.ref_name }} | ||
git push origin ${{ github.ref_name }} |
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 |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
run: | | ||
pip install pydriller tqdm | ||
cd ivy | ||
python determine_test_coverage.py ${{ matrix.branch }} | ||
python scripts/determine_tests/determine_test_coverage.py ${{ matrix.branch }} | ||
cd .. | ||
mkdir tests | ||
cp ivy/tests.pbz2 tests/ | ||
|
@@ -51,6 +51,6 @@ jobs: | |
source-directory: tests/ | ||
destination-github-username: 'unifyai' | ||
destination-repository-name: 'Mapping' | ||
user-email: [email protected] | ||
user-email: [email protected] | ||
commit-message: Update Mapping | ||
target-branch: master${{ matrix.branch }} |
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.