forked from JamePeng/llama-cpp-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
160 lines (130 loc) · 4.81 KB
/
CMakeLists.txt
File metadata and controls
160 lines (130 loc) · 4.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
cmake_minimum_required(VERSION 3.21)
project(llama_cpp)
option(LLAMA_BUILD "Build llama.cpp shared library and install alongside python package" ON)
option(MTMD_BUILD "Build mtmd shared library and install alongside python package" ON)
# Helper function to install targets to Python package directories
function(llama_cpp_python_install_target target)
if(NOT TARGET ${target})
return()
endif()
# Define install destinations to avoid code duplication
set(INSTALL_DIRS
"${CMAKE_CURRENT_SOURCE_DIR}/llama_cpp/lib"
"${SKBUILD_PLATLIB_DIR}/llama_cpp/lib"
)
foreach(DIR ${INSTALL_DIRS})
install(
TARGETS ${target}
LIBRARY DESTINATION ${DIR}
RUNTIME DESTINATION ${DIR}
ARCHIVE DESTINATION ${DIR}
FRAMEWORK DESTINATION ${DIR}
RESOURCE DESTINATION ${DIR}
)
# Automatically handle Windows DLL installation for each target
if (WIN32)
install(
FILES $<TARGET_RUNTIME_DLLS:${target}>
DESTINATION ${DIR}
OPTIONAL # Prevent errors if the target has no DLLs
)
endif()
endforeach()
# Configure RPATH
if(UNIX)
set(INSTALL_RPATH_VAL "$ORIGIN")
if(APPLE)
set(INSTALL_RPATH_VAL "@loader_path")
endif()
set_target_properties(${target} PROPERTIES
INSTALL_RPATH "${INSTALL_RPATH_VAL}"
BUILD_WITH_INSTALL_RPATH TRUE
)
endif()
endfunction()
if (LLAMA_BUILD)
set(BUILD_SHARED_LIBS "On")
set(CMAKE_SKIP_BUILD_RPATH FALSE)
# When building, don't use the install RPATH already
# (but later on when installing)
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
# Add the automatically determined parts of the RPATH
# which point to directories outside the build tree to the install RPATH
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
set(CMAKE_SKIP_RPATH FALSE)
# Enable building of the common library
set(LLAMA_BUILD_COMMON ON CACHE BOOL "Build llama.cpp common library" FORCE)
# Disable building curl support
set(LLAMA_CURL OFF CACHE BOOL "llama.cpp: enable curl" FORCE)
# Enable build and link OpenSSL
set(LLAMA_OPENSSL ON CACHE BOOL "llama.cpp: build and link OpenSSL" FORCE)
# Architecture detection and settings for Apple platforms
if (APPLE)
# If CMAKE_OSX_ARCHITECTURES is not set, use the host architecture
if(NOT CMAKE_OSX_ARCHITECTURES)
set(CMAKE_OSX_ARCHITECTURES ${CMAKE_HOST_SYSTEM_PROCESSOR} CACHE STRING "Build architecture for macOS" FORCE)
endif()
message(STATUS "Host architecture: ${CMAKE_HOST_SYSTEM_PROCESSOR}")
message(STATUS "Target architecture: ${CMAKE_OSX_ARCHITECTURES}")
# Configure based on target architecture
if(CMAKE_OSX_ARCHITECTURES STREQUAL "x86_64")
# Intel Mac settings
set(GGML_AVX "OFF" CACHE BOOL "ggml: enable AVX" FORCE)
set(GGML_AVX2 "OFF" CACHE BOOL "ggml: enable AVX2" FORCE)
set(GGML_FMA "OFF" CACHE BOOL "ggml: enable FMA" FORCE)
set(GGML_F16C "OFF" CACHE BOOL "ggml: enable F16C" FORCE)
endif()
# Metal settings (enable for both architectures)
set(GGML_METAL "ON" CACHE BOOL "ggml: enable Metal" FORCE)
set(GGML_METAL_EMBED_LIBRARY "ON" CACHE BOOL "ggml: embed metal library" FORCE)
endif()
add_subdirectory(vendor/llama.cpp)
if (WIN32)
if (TARGET llama)
set_target_properties(llama PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
endif()
endif()
# Define list of GGML targets to install
set(GGML_TARGETS
llama
ggml
ggml-base
ggml-blas
ggml-cann
ggml-cpu
ggml-cuda
ggml-hexagon
ggml-hip
ggml-metal
ggml-musa
ggml-opencl
ggml-rpc
ggml-sycl
ggml-vulkan
ggml-webgpu
ggml-zdnn
ggml-zendnn
)
# Loop through targets to avoid repetitive function calls
foreach(TARGET_NAME ${GGML_TARGETS})
llama_cpp_python_install_target(${TARGET_NAME})
endforeach()
if (MTMD_BUILD)
if (NOT DEFINED LLAMA_BUILD_NUMBER)
set(LLAMA_BUILD_NUMBER ${BUILD_NUMBER})
endif()
set(LLAMA_INSTALL_VERSION 0.0.${LLAMA_BUILD_NUMBER})
add_subdirectory(vendor/llama.cpp/tools/mtmd)
if (LLAMA_CUBLAS OR LLAMA_CUDA)
add_compile_definitions(GGML_USE_CUBLAS)
add_compile_definitions(GGML_USE_CUDA)
endif()
if (LLAMA_METAL)
add_compile_definitions(GGML_USE_METAL)
endif()
if (WIN32)
set_target_properties(mtmd PROPERTIES CUDA_ARCHITECTURES OFF)
endif()
llama_cpp_python_install_target(mtmd)
endif()
endif()