From: Jared Van Bortel Date: Wed, 8 May 2024 23:55:32 +0000 (-0400) Subject: cmake : fix typo (#7151) X-Git-Tag: upstream/0.0.4488~1663 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=4426e2987b566f09c7aa96ada9706cc778637620;p=pkg%2Fggml%2Fsources%2Fllama.cpp cmake : fix typo (#7151) --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 07b3a438..aa65b0d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -431,7 +431,7 @@ if (LLAMA_CUDA) if (LLAMA_STATIC) if (WIN32) - # As of 12.3.1 CUDA Tookit for Windows does not offer a static cublas library + # As of 12.3.1 CUDA Toolkit for Windows does not offer a static cublas library set(LLAMA_EXTRA_LIBS ${LLAMA_EXTRA_LIBS} CUDA::cudart_static CUDA::cublas CUDA::cublasLt) else () set(LLAMA_EXTRA_LIBS ${LLAMA_EXTRA_LIBS} CUDA::cudart_static CUDA::cublas_static CUDA::cublasLt_static)