-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Companion Open3D PR: isl-org/Open3D#6288 - Add support for python3.11. -️ Upgrade pytorch to 2.0.1 with cuda 11.7 - Upgrade tensorflow / tensorboard to 2.13. - Disable building tensorflow ops on Linux. Keep old cxx11_abi. - Update CI to use requirements files instead of manually specified versions. - Add instructions to build with new cxx11_abi with tensorflow ops support.
- Loading branch information
Showing
9 changed files
with
167 additions
and
155 deletions.
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
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,2 +1 @@ | ||
tensorflow~=2.8.4 ; sys_platform != 'darwin' or platform_machine != 'arm64' | ||
tensorflow-macos==2.8.0 ; sys_platform == 'darwin' and platform_machine == 'arm64' | ||
tensorflow~=2.13.0 |
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,5 +1,5 @@ | ||
-f https://download.pytorch.org/whl/torch/ | ||
torch==1.13.1+cu116 | ||
torch==2.0.1+cu117 | ||
-f https://download.pytorch.org/whl/torchvision/ | ||
torchvision==0.14.1+cu116 | ||
torchvision==0.15.2+cu117 | ||
tensorboard |
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 @@ | ||
--extra-index-url https://download.pytorch.org/whl/cpu/ | ||
torch==1.13.1+cpu ; sys_platform != 'darwin' | ||
torchvision==0.14.1+cpu ; sys_platform != 'darwin' | ||
torch==1.13.1 ; sys_platform == 'darwin' | ||
torchvision==0.14.1 ; sys_platform == 'darwin' | ||
torch==2.0.1+cpu ; sys_platform != 'darwin' | ||
torchvision==0.15.2+cpu ; sys_platform != 'darwin' | ||
torch==2.0.1 ; sys_platform == 'darwin' | ||
torchvision==0.15.2 ; sys_platform == 'darwin' | ||
tensorboard |
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,7 +1,7 @@ | ||
addict | ||
pillow>=9.3.0 | ||
matplotlib>=3 | ||
numpy>1.15 | ||
numpy>1.18 | ||
pandas>=1.0 | ||
pyyaml>=5.4.1 | ||
scikit-learn>=0.21 | ||
|
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