We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15fe3d0 commit c2e48a5Copy full SHA for c2e48a5
.github/workflows/windows.yml
@@ -21,7 +21,7 @@ concurrency:
21
22
env:
23
PIP_VER: "24.3.1"
24
- CUDA_VERSION: "12.1.0"
+ CUDA_VERSION: "12.4.0"
25
SRC_DIR: "D:\\a\\open3d\\open3d"
26
BUILD_DIR: "C:\\Open3D\\build"
27
NPROC: 2
@@ -106,7 +106,8 @@ jobs:
106
- name: Install PyTorch requirements
107
run: |
108
if (${{ matrix.BUILD_CUDA_MODULE == 'ON' }}) {
109
- python -m pip install -r open3d_ml/requirements-torch-cuda.txt
+ python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
110
+ python -m pip install tensorboard
111
} else {
112
python -m pip install -r open3d_ml/requirements-torch.txt
113
}
0 commit comments