Skip to content

Commit

Permalink
Downgrade torch on mac to 1.8.1 (#436)
Browse files Browse the repository at this point in the history
* Downgrade torch on mac to 1.8.1
* Update CI to use old CXX11_ABI due to new CXX11_ABI default in Open3D.
Co-authored-by: Sameer Sheorey <[email protected]>
  • Loading branch information
errissa authored Dec 10, 2021
1 parent e21b445 commit be950c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ci/run_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ mkdir Open3D/build
pushd Open3D/build
cmake -DBUNDLE_OPEN3D_ML=ON \
-DOPEN3D_ML_ROOT=$PATH_TO_OPEN3D_ML \
-DGLIBCXX_USE_CXX11_ABI=OFF \
-DBUILD_TENSORFLOW_OPS=ON \
-DBUILD_PYTORCH_OPS=ON \
-DBUILD_GUI=OFF \
Expand Down
2 changes: 1 addition & 1 deletion requirements-torch.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-f https://download.pytorch.org/whl/lts/1.8/torch_lts.html
torch==1.8.2+cpu ; sys_platform != 'darwin'
torchvision==0.9.2+cpu ; sys_platform != 'darwin'
torch==1.8.2 ; sys_platform == 'darwin'
torch==1.8.1 ; sys_platform == 'darwin'
torchvision==0.9.1 ; sys_platform == 'darwin'
tensorboard

0 comments on commit be950c9

Please sign in to comment.