-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use image instead of dockerfile in dev container #11596
Closed
Closed
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3adade8
changes after force push (#11094)
RickSanchezStoic 1f13717
ldexp experimental implementation (#11113)
pillarxyz cca7df1
let nested_map work with UserDict
mattbarrett98 75ff228
Added torch `hinge_embedding_loss (#11124)
ZiadAmerr 3563d26
Added ifft function for numpy frontend (#11119)
CodeMaestro1000 38f1147
bincount experimental implementation (#11116)
pillarxyz 9a48c3c
fix type hints for numpy bernoulli function
mattbarrett98 efd27c0
acos #10800 (#11103)
SSahas b8342a1
add dark-light theme class for logos in setup.py (#11133)
juliagsy 8cdfaac
Update compiler
vaatsalya123 96413fe
small fix to the median of torch backend
Daniel4078 60434a3
add `@to_ivy_arrays_and_back` to `pad` frontend function in tf and ch…
sherry30 8383c4c
tf math sqrt, negative (#11118)
Sravanthgithub 7628413
Update intelligent-tests.yml
RashulChutani 632ea72
Added torch.linalg.eigvals to torch frontend#10848 (#11140)
Radu2k d95cb92
updated ivy pad to allow float constant_values and end_values
AnnaTz f76e252
Update test-ivy-core.yml
vedpatwardhan 6d37e6b
Resolve Issue with Intelligent Tests Workflow
RashulChutani 768b21e
Merge remote-tracking branch 'origin/master'
RashulChutani 78a2613
Resolve Issue with Intelligent Tests Workflow
RashulChutani 8b62531
Update test-ivy-core.yml
vedpatwardhan a06ad6f
Update test-ivy-core.yml
vedpatwardhan 70c1d9b
Version unpinning (#11168)
RickSanchezStoic 332ff34
Docker exploration multiversion (#11199)
RickSanchezStoic d07ea48
Added view and repeat to torch.Tensor
fspyridakos ea1f837
Use image instead of dockerfile
Dsantra92 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,37 +1,27 @@ | ||
// 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 Development Environment", | ||
|
||
// Sets the run context to one level up instead of the .devcontainer folder. | ||
"context": "..", | ||
|
||
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. | ||
// Swap in commented line below if using GPU codespace. | ||
// "dockerFile": "../docker/DockerfileGPU", | ||
|
||
"dockerFile": "../docker/Dockerfile", | ||
|
||
// An array of extensions that should be installed into the container. | ||
"extensions": ["ms-python.python"], | ||
|
||
// Use unifyai/ivy:latest-gpu for gpu support | ||
"image": "unifyai/ivy:latest", | ||
"customizations": { | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
}, | ||
// 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. | ||
"postCreateCommand": "bash .devcontainer/post_create_commands.sh" | ||
|
||
// 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" | ||
|
||
// Uncomment if using GPU codespace | ||
// "runArgs": ["--gpus","all"], | ||
|
||
} | ||
|
||
} |
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,8 +1,9 @@ | ||
#!/bin/bash | ||
|
||
pip3 install black | ||
pip3 install flake8 | ||
|
||
git submodule update --init --recursive | ||
|
||
python3 -m pip install --user -e . | ||
python3 -m pip install pre-commit | ||
|
||
git config --global --add safe.directory /workspaces/ivy | ||
|
||
( cd /workspaces/ivy/ && pre-commit install) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quick note: this is used here to install Ivy as a local package, we should keep it.