-
Notifications
You must be signed in to change notification settings - Fork 7
Description
Hi, first of all, thank you for sharing this great project.
I tried setting it up on Windows using the provided install.bat file — the installation went smoothly and all dependencies and .whl packages were installed successfully.
However, when running the project on an RTX 5090, it fails to start.
After checking, it seems that the issue comes from the fact that CUDA 12.4 does not support sm_120 architecture, which the 5090 requires.
I believe the .whl files included in the installer were built with CUDA 12.4, so newer GPUs (like the RTX 5090) can’t execute them properly.
Steps to Reproduce
- Run
install.baton Windows - Try launching the app using an RTX 5090 GPU
Expected Result
The application runs normally on RTX 5090.
Actual Result
The app fails to start due to unsupported sm_120 architecture in the current CUDA version.
Suggestion
Updating the .whl packages to CUDA 12.8 or higher should solve the problem, since CUDA 12.8 officially adds support for sm_120.
It might also help to auto-detect GPU architecture during installation and fetch a compatible version accordingly.
Environment
- OS: Windows 11
- GPU: RTX 5090
- CUDA: 12.4 (installed automatically by
install.bat) - Proposed CUDA: 12.8 or above