renamed save-load-state example files replacing underscores by dashes

This commit is contained in:
xaedes 2023-04-24 18:20:10 +02:00
parent 0f40b0adb9
commit 00ef34dea1
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1
3 changed files with 3 additions and 3 deletions

View file

@ -34,5 +34,5 @@ else()
add_subdirectory(quantize-stats)
add_subdirectory(perplexity)
add_subdirectory(embedding)
add_subdirectory(save_load_state)
add_subdirectory(save-load-state)
endif()

View file

@ -1,4 +1,4 @@
set(TARGET save_load_state)
add_executable(${TARGET} save_load_state.cpp)
set(TARGET save-load-state)
add_executable(${TARGET} save-load-state.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)