Open lvkoala opened 2 years ago
Currently, the released Open3D Windows wheel is not CUDA-enabled. We may enable CPU+CUDA for Windows by default in future releases. The Ubuntu wheel is CUDA-enabled with CUDA 11.x by default, so you may use Ubuntu as well.
Here, we provide experimental wheels for Python 3.7, 3.8, 3.9 on Windows witgh CUDA 11.x.
conda activate your-env-name
pip install xxx.whl
python -c 'import open3d as o3d; print(o3d.core.cuda.is_available())
Supported Python versions:
Supported devices:
Alternatively, you can compile from source with CUDA enabled. First, get this patch: https://github.com/isl-org/Open3D/pull/5259, and then compile and install with:
conda activate your-env-name
cd Open3D
mkdir build
cd build
cmake -DBUILD_CUDA_MODULE=ON -DDEVELOPER_BUILD=OFF ..
cmake --build . --config Release --parallel $env:NUMBER_OF_PROCESSORS --target install-pip-package
python -c 'import open3d as o3d; print(o3d.core.cuda.is_available())
Checklist
master
branch).My Question
Hi,
I am trying to run the python dense SLAM example. I worked in using CPU but when I tried to run it using CUDA, such error occur
In addition I tried
python -c 'import open3d as o3d; print(o3d.core.cuda.is_available())'
and it returnedFalse
Versions currently installed:
I had read the issue and document. I am a bit confused about whether open3d support cuda on windows. Could you please tell me how to do that?
Thanks