Skip to content
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

PyTorch 1.8.1 #683

Merged
merged 1 commit into from
Mar 29, 2021
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
2 changes: 1 addition & 1 deletion src/ts2k/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
wheel==0.36.2
sexpdata==0.0.3
torch==1.8.0+cu111
torch==1.8.1+cu111
editdistance
4 changes: 2 additions & 2 deletions test/builds/test_pytest.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ REM New resolver with PyTorch version notation https://pip.pypa.io/en/latest/use
REM Too big, throw memory exception https://stackoverflow.com/a/31526029/35544
echo Installing dependencies...
python -m pip install -r src/python/requirements.txt
python -m pip install --use-deprecated=legacy-resolver --no-cache-dir pytest numpy torch==1.8.0+cu111 -f https://download.pytorch.org/whl/torch_stable.html
python -m pip install --use-deprecated=legacy-resolver --no-cache-dir pytest numpy torch==1.8.1+cu111 -f https://download.pytorch.org/whl/torch_stable.html

echo Installing ksc...
cd ./src/python
Expand All @@ -22,7 +22,7 @@ cd ./src/ts2k
python -m pip install --editable .
cd ../..

REM currently have backend issues on PyTorch 1.8.0 https://github.com/microsoft/knossos-ksc/issues/659
REM currently memory issues in tests PyTorch 1.8.1 https://github.com/microsoft/knossos-ksc/issues/679

REM echo Running pytest on ts2k
REM python -m pytest test/ts2k
Expand Down
2 changes: 1 addition & 1 deletion test/builds/test_pytest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set -e

echo Installing dependencies...
python3 -m pip install -r src/python/requirements.txt
python3 -m pip install pytest numpy torch==1.8.0+cu111 jax==0.1.57 jaxlib==0.1.37 -f https://download.pytorch.org/whl/torch_stable.html
python3 -m pip install pytest numpy torch==1.8.1+cu111 jax==0.1.57 jaxlib==0.1.37 -f https://download.pytorch.org/whl/torch_stable.html

echo Installing ksc...
cd ./src/python
Expand Down