rename baby-llama-text to train-text-from-scratch

This commit is contained in:
xaedes 2023-05-30 17:07:03 +02:00
parent 21b11b55d4
commit 8fd8599f61
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1
4 changed files with 5 additions and 4 deletions

View file

@ -37,6 +37,7 @@ else()
add_subdirectory(save-load-state)
add_subdirectory(benchmark)
add_subdirectory(baby-llama)
add_subdirectory(train-text-from-scratch)
if(LLAMA_BUILD_SERVER)
add_subdirectory(server)
endif()

View file

@ -2,7 +2,3 @@ set(TARGET baby-llama)
add_executable(${TARGET} baby-llama.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)
add_executable(${TARGET}-text baby-llama-text.cpp)
target_link_libraries(${TARGET}-text PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET}-text PRIVATE cxx_std_11)

View file

@ -0,0 +1,4 @@
set(TARGET train-text-from-scratch)
add_executable(${TARGET} train-text-from-scratch.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)