Skip to content
Open
Changes from all commits
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
5 changes: 5 additions & 0 deletions cmake/ext/cunls.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ if(NOT USE_CUDA)
message(FATAL_ERROR "USE_CUNLS requires USE_CUDA")
endif()

if(CUDAToolkit_VERSION VERSION_LESS "12.6")
message(FATAL_ERROR "USE_CUNLS requires CUDA >= 12.6 (found ${CUDAToolkit_VERSION}). "
"Either install CUDA 12.6+ or set -DUSE_CUNLS=OFF.")
endif()

set(CUNLS_VERSION "Release_07_13_2026")

# Keep cuNLS's own tests and Python bindings out of this build.
Expand Down
Loading