Spaces:
Running
Running
Commit
·
fafaa8b
1
Parent(s):
2fdd2df
cuda: remove linking to cublasLt (llama/14790)
Browse filesSigned-off-by: Xiaodong Ye <[email protected]>
ggml/src/ggml-cuda/CMakeLists.txt
CHANGED
|
@@ -102,12 +102,12 @@ if (CUDAToolkit_FOUND)
|
|
| 102 |
if (GGML_STATIC)
|
| 103 |
if (WIN32)
|
| 104 |
# As of 12.3.1 CUDA Toolkit for Windows does not offer a static cublas library
|
| 105 |
-
target_link_libraries(ggml-cuda PRIVATE CUDA::cudart_static CUDA::cublas
|
| 106 |
else ()
|
| 107 |
-
target_link_libraries(ggml-cuda PRIVATE CUDA::cudart_static CUDA::cublas_static
|
| 108 |
endif()
|
| 109 |
else()
|
| 110 |
-
target_link_libraries(ggml-cuda PRIVATE CUDA::cudart CUDA::cublas
|
| 111 |
endif()
|
| 112 |
|
| 113 |
if (GGML_CUDA_NO_VMM)
|
|
|
|
| 102 |
if (GGML_STATIC)
|
| 103 |
if (WIN32)
|
| 104 |
# As of 12.3.1 CUDA Toolkit for Windows does not offer a static cublas library
|
| 105 |
+
target_link_libraries(ggml-cuda PRIVATE CUDA::cudart_static CUDA::cublas)
|
| 106 |
else ()
|
| 107 |
+
target_link_libraries(ggml-cuda PRIVATE CUDA::cudart_static CUDA::cublas_static)
|
| 108 |
endif()
|
| 109 |
else()
|
| 110 |
+
target_link_libraries(ggml-cuda PRIVATE CUDA::cudart CUDA::cublas)
|
| 111 |
endif()
|
| 112 |
|
| 113 |
if (GGML_CUDA_NO_VMM)
|