mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-06-27 23:50:20 -05:00
* ggml : move AMX to the CPU backend --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
8 lines
268 B
CMake
8 lines
268 B
CMake
find_package (Threads REQUIRED)
|
|
|
|
set(TARGET vulkan-shaders-gen)
|
|
add_executable(${TARGET} vulkan-shaders-gen.cpp)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|
|
target_link_libraries(vulkan-shaders-gen PUBLIC Threads::Threads)
|