Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@ jobs:
pip install --upgrade pip
# note: installing torch and torchvision together ensures their version compatibility
pip install torch==2.8.0 torchvision --index-url https://download.pytorch.org/whl/cpu
pip install pytest
pip install -e .[cpu]
pip install -r test-requirements.txt
pip install jupyter nbconvert pandas matplotlib
pip install -r test-requirements.txt
pip install -e .[cpu]
- name: Test with pytest
shell: bash
run: |
Expand All @@ -59,6 +58,6 @@ jobs:
shell: bash
run: |
export JAX_PLATFORMS=cpu
for FILE in $(find docs -name '*.ipynb'); do
jupyter nbconvert --to notebook --execute $FILE;
for FILE in $(find docs -name '*.py'); do
python $FILE
done
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
__pycache__/
*.py[codz]
*$py.class
*.ipynb # notebooks should use jupytext, and check in .py / .md format
docs/site/

# C extensions
*.so
Expand Down Expand Up @@ -195,9 +197,9 @@ cython_debug/
.abstra/

# Visual Studio Code
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder
# .vscode/

Expand Down
Empty file.
2,641 changes: 0 additions & 2,641 deletions docs/docs/tutorials/distributed_array.ipynb

This file was deleted.

608 changes: 608 additions & 0 deletions docs/docs/tutorials/distributed_array.py

Large diffs are not rendered by default.

Empty file removed docs/docs/tutorials/training.md
Empty file.
1,017 changes: 0 additions & 1,017 deletions docs/docs/tutorials/trainingyt.ipynb

This file was deleted.

Loading