-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Downgrade torch on mac to 1.8.1 (#436)
* 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
Showing
2 changed files
with
2 additions
and
1 deletion.
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 |
---|---|---|
@@ -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 |