CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 3d agoView on Hugging Face
0likes1.1kdownloads
CMakeLists.txt11 linesDownload Raw Back to diffusion
1set(TARGET llama-diffusion)2add_library(${TARGET} STATIC diffusion.cpp diffusion.h)3target_link_libraries(${TARGET} PUBLIC llama llama-common ${CMAKE_THREAD_LIBS_INIT})4target_compile_features(${TARGET} PUBLIC cxx_std_17)5 6set(TARGET llama-diffusion-cli)7add_executable(${TARGET} diffusion-cli.cpp)8install(TARGETS ${TARGET} RUNTIME)9target_link_libraries(${TARGET} PRIVATE llama-diffusion llama llama-common ${CMAKE_THREAD_LIBS_INIT})10target_compile_features(${TARGET} PRIVATE cxx_std_17)11