File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,9 @@ models-mnt
42
42
/gguf-llama-simple
43
43
/libllama.so
44
44
/llama-bench
45
+ /baby-llama
46
+ /beam-search
47
+ /save-load-state
45
48
build-info.h
46
49
arm_neon.h
47
50
compile_commands.json
Original file line number Diff line number Diff line change 1
1
# Define the default target now so that it is always the first target
2
- 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
2
+ 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
3
3
4
4
# Binaries only useful for tests
5
5
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
446
446
baby-llama : examples/baby-llama/baby-llama.cpp ggml.o llama.o common.o $(OBJS )
447
447
$(CXX ) $(CXXFLAGS ) $(filter-out % .h,$^ ) -o $@ $(LDFLAGS )
448
448
449
- beam_search : examples/beam_search/beam_search .cpp build-info.h ggml.o llama.o common.o $(OBJS )
449
+ beam-search : examples/beam-search/beam-search .cpp build-info.h ggml.o llama.o common.o $(OBJS )
450
450
$(CXX ) $(CXXFLAGS ) $(filter-out % .h,$^ ) -o $@ $(LDFLAGS )
451
451
452
452
ifneq '' '$(or $(filter clean,$(MAKECMDGOALS ) ) ,$(LLAMA_METAL ) ) '
Original file line number Diff line number Diff line change 25
25
add_subdirectory (simple )
26
26
add_subdirectory (embd-input )
27
27
add_subdirectory (llama-bench )
28
- add_subdirectory (beam_search )
28
+ add_subdirectory (beam-search )
29
29
if (LLAMA_METAL )
30
30
add_subdirectory (metal )
31
31
endif ()
Original file line number Diff line number Diff line change 1
- set (TARGET beam_search )
2
- add_executable (${TARGET} beam_search .cpp )
1
+ set (TARGET beam-search )
2
+ add_executable (${TARGET} beam-search .cpp )
3
3
install (TARGETS ${TARGET} RUNTIME )
4
4
target_link_libraries (${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT} )
5
5
target_compile_features (${TARGET} PRIVATE cxx_std_11 )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments