summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2023-08-30 12:52:46 +0300
committerGeorgi Gerganov <ggerganov@gmail.com>2023-08-30 12:53:24 +0300
commitc90d135eb433cf0d40fb95e46a48d1391d2352b5 (patch)
tree7e2d34aa1b9ad0df134c26f71cdd65b6df979e10
parent0d1c706181cd31e7f368dd14eeb16c1a2569e4df (diff)
examples : fix underscore in beam-search + .gitignore (close #2900)
-rw-r--r--.gitignore3
-rw-r--r--Makefile4
-rw-r--r--examples/CMakeLists.txt2
-rw-r--r--examples/beam-search/CMakeLists.txt (renamed from examples/beam_search/CMakeLists.txt)4
-rw-r--r--examples/beam-search/beam-search.cpp (renamed from examples/beam_search/beam_search.cpp)0
5 files changed, 8 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 54ea2b52..8b5f45a2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -42,6 +42,9 @@ models-mnt
/gguf-llama-simple
/libllama.so
/llama-bench
+/baby-llama
+/beam-search
+/save-load-state
build-info.h
arm_neon.h
compile_commands.json
diff --git a/Makefile b/Makefile
index bd2d9286..b750540f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
# Define the default target now so that it is always the first target
-BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple save-load-state server embd-input-test gguf llama-bench baby-llama beam_search tests/test-c.o
+BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple save-load-state server embd-input-test gguf llama-bench baby-llama beam-search tests/test-c.o
# Binaries only useful for tests
TEST_TARGETS = tests/test-llama-grammar tests/test-grammar-parser tests/test-double-float tests/test-grad0 tests/test-opt tests/test-quantize-fns tests/test-quantize-perf tests/test-sampling tests/test-tokenizer-0-llama tests/test-tokenizer-0-falcon tests/test-tokenizer-1
@@ -446,7 +446,7 @@ llama-bench: examples/llama-bench/llama-bench.cpp build-info.h ggml.o llama.o co
baby-llama: examples/baby-llama/baby-llama.cpp ggml.o llama.o common.o $(OBJS)
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
-beam_search: examples/beam_search/beam_search.cpp build-info.h ggml.o llama.o common.o $(OBJS)
+beam-search: examples/beam-search/beam-search.cpp build-info.h ggml.o llama.o common.o $(OBJS)
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
ifneq '' '$(or $(filter clean,$(MAKECMDGOALS)),$(LLAMA_METAL))'
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index 94b78522..6e65eb08 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -25,7 +25,7 @@ else()
add_subdirectory(simple)
add_subdirectory(embd-input)
add_subdirectory(llama-bench)
- add_subdirectory(beam_search)
+ add_subdirectory(beam-search)
if (LLAMA_METAL)
add_subdirectory(metal)
endif()
diff --git a/examples/beam_search/CMakeLists.txt b/examples/beam-search/CMakeLists.txt
index b29e0109..e44a7497 100644
--- a/examples/beam_search/CMakeLists.txt
+++ b/examples/beam-search/CMakeLists.txt
@@ -1,5 +1,5 @@
-set(TARGET beam_search)
-add_executable(${TARGET} beam_search.cpp)
+set(TARGET beam-search)
+add_executable(${TARGET} beam-search.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)
diff --git a/examples/beam_search/beam_search.cpp b/examples/beam-search/beam-search.cpp
index 42c7c725..42c7c725 100644
--- a/examples/beam_search/beam_search.cpp
+++ b/examples/beam-search/beam-search.cpp