mirror of
https://github.com/ggerganov/llama.cpp
synced 2026-03-24 16:10:53 +01:00
* examples : add idle * metal : attach residency sets to queue * idle : add link * idle : adjust intervals * metal : add residency sets keep-alive heartbeat * cont : adjust default keep-alive time
6 lines
227 B
CMake
6 lines
227 B
CMake
set(TARGET llama-idle)
|
|
add_executable(${TARGET} idle.cpp)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
target_link_libraries(${TARGET} PRIVATE llama common ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|