Hi,
I am running FastSurfer via the official Docker image (deepmi/fastsurfer:latest) on a system with an NVIDIA GeForce RTX 5090 (compute capability sm_120).
Segmentation fails with the following error when using CUDA:
UserWarning: NVIDIA GeForce RTX 5090 with CUDA capability sm_120 is not compatible with the current PyTorch installation.
The current PyTorch install supports CUDA capabilities sm_50 sm_60 sm_70 sm_75 sm_80 sm_86 sm_90.
CUDA error: no kernel image is available for execution on the device
ERROR: FastSurfer asegdkt segmentation failed.
This suggests that the PyTorch version bundled in the current Docker image was built without support for sm_120, so GPU execution is not possible on RTX 5090.
Running with --device cpu works as expected.
Is there a plan to update the Docker image with a newer PyTorch/CUDA build that supports RTX 5090 (Blackwell, sm_120)?
Thanks.