fix: Disable Windows+CUDA workaround when compiling for HIPBLAS (#1493)
* Disable Windows+CUDA workaround when compiling for HIPBLAS * fix spacing * change condition to check for Windows & CUDA Co-authored-by: Andrei <abetlen@gmail.com> --------- Co-authored-by: Andrei <abetlen@gmail.com>
This commit is contained in:
parent
cd3f1bb387
commit
ae5682f500
1 changed files with 10 additions and 8 deletions
|
@ -41,14 +41,16 @@ if (LLAMA_BUILD)
|
|||
RESOURCE DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
)
|
||||
# Workaround for Windows + CUDA https://github.com/abetlen/llama-cpp-python/issues/563
|
||||
install(
|
||||
FILES $<TARGET_RUNTIME_DLLS:llama>
|
||||
DESTINATION ${SKBUILD_PLATLIB_DIR}/llama_cpp
|
||||
)
|
||||
install(
|
||||
FILES $<TARGET_RUNTIME_DLLS:llama>
|
||||
DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
)
|
||||
if (WIN32 AND (LLAMA_CUDA OR LLAMA_CUBLAS))
|
||||
install(
|
||||
FILES $<TARGET_RUNTIME_DLLS:llama>
|
||||
DESTINATION ${SKBUILD_PLATLIB_DIR}/llama_cpp
|
||||
)
|
||||
install(
|
||||
FILES $<TARGET_RUNTIME_DLLS:llama>
|
||||
DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
if (LLAVA_BUILD)
|
||||
if (LLAMA_CUBLAS OR LLAMA_CUDA)
|
||||
|
|
Loading…
Reference in a new issue