-
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 pr/SiLyGoose/22629
- Loading branch information
Showing
1,149 changed files
with
92,633 additions
and
38,231 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
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
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 |
---|---|---|
|
@@ -62,4 +62,3 @@ | |
} | ||
} | ||
} | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,21 @@ | ||
# Ivy Framework | ||
ivy/func_wrapper.py @VedPatwardhan | ||
**/gradients.py @VedPatwardhan | ||
ivy/utils/backend @VedPatwardhan @CatB1t | ||
ivy/utils/backend/ast_helpers.py @CatB1t | ||
ivy/func_wrapper.py @Sam-Armstrong | ||
**/gradients.py @Sam-Armstrong | ||
ivy/utils/backend @Sam-Armstrong | ||
ivy/utils/backend/ast_helpers.py @Sam-Armstrong | ||
|
||
# Ivy Testing | ||
ivy_tests/test_ivy/helpers/ @CatB1t | ||
ivy_tests/array_api_testing/ @aarsh2001 @hirwa-nshuti | ||
ivy_tests/test_ivy/helpers/ @Sam-Armstrong | ||
|
||
# Docs builder | ||
docs/index.rst @KareemMAX | ||
docs/make_docs.sh @KareemMAX | ||
docs/partial_conf.py @KareemMAX | ||
docs/prebuild.sh @KareemMAX | ||
docs/overview/contributing/building_the_docs.rst @KareemMAX | ||
docs/overview/deep_dive/building_the_docs_pipline.rst @KareemMAX | ||
docs/_templates @KareemMAX | ||
|
||
# Docker | ||
docker/* @ricksanchezstoic | ||
|
||
# Idea files | ||
.idea/* @Aarsh2001 @zaeemansari70 | ||
docs/index.rst @Sam-Armstrong | ||
docs/make_docs.sh @Sam-Armstrong | ||
docs/partial_conf.py @Sam-Armstrong | ||
docs/prebuild.sh @Sam-Armstrong | ||
docs/overview/contributing/building_the_docs.rst @Sam-Armstrong | ||
docs/overview/deep_dive/building_the_docs_pipeline.rst @Sam-Armstrong | ||
docs/_templates @Sam-Armstrong | ||
docs/demos @Sam-Armstrong | ||
|
||
# README | ||
README.md @guillesanbri | ||
README.md @Sam-Armstrong |
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,31 +1,44 @@ | ||
|
||
<!-- | ||
<!-- | ||
This template will help you to have a meaningful PR, please follow it and do not leave it blank. | ||
--> | ||
|
||
# PR Description | ||
# PR Description | ||
|
||
<!-- | ||
<!-- | ||
If there is no related issue, please add a short description about your PR. | ||
--> | ||
|
||
## Related Issue | ||
## Related Issue | ||
|
||
<!-- | ||
Please use this format to link other issues with their numbers: Close #123 | ||
<!-- | ||
Please use this format to link other issues with their numbers: Close #123 | ||
https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword | ||
--> | ||
|
||
Close # | ||
Closes # | ||
|
||
## Checklist | ||
## Checklist | ||
|
||
- [ ] Did you add a function? | ||
- [ ] Did you add the tests? | ||
- [ ] Did you run your tests and are your tests passing? | ||
- [ ] Did pre-commit not fail on any check? | ||
- [ ] Did you follow the steps we provided? | ||
|
||
### Socials: | ||
<!-- | ||
Please mark your PR as a draft if you realise after the fact that your tests are not passing or | ||
that your pre-commit check has some failures. | ||
<!-- | ||
Here are some relevant resources regarding tests and pre-commit: | ||
https://unify.ai/docs/ivy/overview/deep_dive/ivy_tests.html | ||
https://unify.ai/docs/ivy/overview/deep_dive/formatting.html#pre-commit | ||
--> | ||
|
||
### Socials | ||
|
||
<!-- | ||
If you have Twitter, please provide it here otherwise just ignore this. | ||
--> |
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.
Oops, something went wrong.