Closed embercult closed 6 months ago
It seems like the docker image was built with an unmatched CUDA compute capability. To support A100 GPU, you can add TORCH_CUDA_ARCH_LIST="7.0;7.5;8.0"
docker build \
-t opensplat:ubuntu-22.04-cuda-12.1.1-torch-2.2.1 \
--build-arg UBUNTU_VERSION=22.04 \
--build-arg CUDA_VERSION=12.1.1 \
--build-arg TORCH_VERSION=2.2.1 \
--build-arg TORCH_CUDA_ARCH_LIST="7.0;7.5;8.0" \
--build-arg CMAKE_BUILD_TYPE=Release .
I had added that still got this issue
I've created PR https://github.com/pierotofy/OpenSplat/pull/91 in hopes that it can resolve your build issue. With the new update, you can test this build method:
Replace
--build-arg TORCH_CUDA_ARCH_LIST="7.0;7.5;8.0"
With
--build-arg CMAKE_CUDA_ARCHITECTURES="70;75;80"