lookahead : init

This commit is contained in:
Georgi Gerganov
2023-11-24 16:47:21 +02:00
parent 2568a4bf54
commit 7c517e1722
3 changed files with 242 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
set(TARGET lookahead)
add_executable(${TARGET} lookahead.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)