Environment
- GPU: NVIDIA GeForce RTX 5070 Ti Laptop GPU (Blackwell, compute capability 12.0)
- Driver: 595.79 (CUDA 13.2)
- OS: Windows 11
- Python: 3.14
- accelerate: [latest]
Problem
accelerate on RTX 5070 Ti requires workarounds:
- sm_120 not detected by PyTorch/CUDA runtime
accelerate config may not list RTX 5070 Ti correctly
- Distributed training may fail without explicit arch list
Solution
$env:TORCH_CUDA_ARCH_LIST = "12.0"
$env:CUDA_VISIBLE_DEVICES = "0"
Then run accelerate config as normal.
Question
Is there a plan to update device detection for Blackwell GPUs?
Environment
Problem
accelerate on RTX 5070 Ti requires workarounds:
accelerate configmay not list RTX 5070 Ti correctlySolution
Then run
accelerate configas normal.Question
Is there a plan to update device detection for Blackwell GPUs?