8000 CUDA: update build CTK version to 12.8 by thevishalagarwal · Pull Request #13360 · ggml-org/llama.cpp · GitHub
[go: up one dir, main page]

Skip to content

CUDA: update build CTK version to 12.8 #13360

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove whitespaces
  • Loading branch information
thevishalagarwal committed May 12, 2025
commit c54c98ff43afbe093b5595155136b206664db031
4 changes: 2 additions & 2 deletions ggml/src/ggml-cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (CUDAToolkit_FOUND)

# Always included after base architecture assuming CUDA toolkit version is 11.1 or higher
list(APPEND ARCH_LIST "61-virtual" "70-virtual" "75-virtual" "80-virtual" "86-real")

# Version-dependent architectures for newer GPUs
if (CUDAToolkit_VERSION VERSION_GREATER_EQUAL "11.8")
list(APPEND ARCH_LIST "89-real")
Expand All @@ -49,7 +49,7 @@ if (CUDAToolkit_FOUND)
if (CUDAToolkit_VERSION VERSION_GREATER_EQUAL "12.8")
list(APPEND ARCH_LIST "120-real")
endif()

set(CMAKE_CUDA_ARCHITECTURES ${ARCH_LIST})
endif()
endif()
Expand Down
Loading
0