File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ models-mnt
52
52
/baby-llama
53
53
/beam-search
54
54
/save-load-state
55
+ /speculative
55
56
build-info.h
56
57
arm_neon.h
57
58
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 speculative 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
@@ -477,6 +477,9 @@ baby-llama: examples/baby-llama/baby-llama.cpp ggml.o llama.o common.o $(OBJS)
477
477
beam-search : examples/beam-search/beam-search.cpp build-info.h ggml.o llama.o common.o $(OBJS )
478
478
$(CXX ) $(CXXFLAGS ) $(filter-out % .h,$^ ) -o $@ $(LDFLAGS )
479
479
480
+ speculative : examples/speculative/speculative.cpp build-info.h ggml.o llama.o common.o $(OBJS )
481
+ $(CXX ) $(CXXFLAGS ) $(filter-out % .h,$^ ) -o $@ $(LDFLAGS )
482
+
480
483
ifneq '' '$(or $(filter clean,$(MAKECMDGOALS ) ) ,$(LLAMA_METAL ) ) '
481
484
BUILD_TARGETS += metal
482
485
endif
You can’t perform that action at this time.
0 commit comments