llama: add sm_86 architecture to cuda_v13_windows preset (#16834)

The llama_cuda_v13_windows preset in llama/server/CMakePresets.json was missing sm_86 and sm_80 architectures, causing RTX 3060 laptop and similar mobile RTX 30-series GPUs to be skipped during runtime GPU detection on Windows with CUDA 13. The Linux preset (llama_cuda_v13_linux) included these architectures as "86-virtual" and "80-virtual", but the Windows preset only had "75-virtual;89-virtual;100-virtual;120-virtual", excluding Ampere mobile GPUs.

Signed-off-by: anish <anishesg@users.noreply.github.com>
Co-authored-by: anish <anishesg@users.noreply.github.com>
This commit is contained in:
anish
2026-06-23 07:35:21 -07:00
committed by GitHub
parent 2a8b31531e
commit 46bc1bcb4c
+1 -1
View File
@@ -108,7 +108,7 @@
"inherits": ["llama_cuda_v13_base"],
"binaryDir": "${sourceDir}/../../build/llama-server-cuda_v13",
"cacheVariables": {
"CMAKE_CUDA_ARCHITECTURES": "75-virtual;89-virtual;100-virtual;120-virtual"
"CMAKE_CUDA_ARCHITECTURES": "75-virtual;80-virtual;86-virtual;89-virtual;100-virtual;120-virtual"
}
},
{