File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,10 @@ test: $(TEST_TARGETS)
77
77
./$$ test_target $(CURDIR ) /models/ggml-vocab-llama-bpe.gguf; \
78
78
./$$ test_target $(CURDIR ) /models/ggml-vocab-phi-3.gguf; \
79
79
./$$ test_target $(CURDIR ) /models/ggml-vocab-falcon.gguf; \
80
- ./$$ test_target $(CURDIR ) /models/ggml-vocab-deepseek-coder.gguf; \
81
- ./$$ test_target $(CURDIR ) /models/ggml-vocab-deepseek-llm.gguf; \
82
80
./$$ test_target $(CURDIR ) /models/ggml-vocab-bert-bge.gguf; \
83
81
./$$ test_target $(CURDIR ) /models/ggml-vocab-starcoder.gguf; \
84
82
./$$ test_target $(CURDIR ) /models/ggml-vocab-gpt-2.gguf; \
83
+ ./$$ test_target $(CURDIR ) /models/ggml-vocab-refact.gguf; \
85
84
elif [ " $$ test_target" = " tests/test-tokenizer-1-spm" ]; then \
86
85
continue ; \
87
86
elif [ " $$ test_target" = " tests/test-tokenizer-1-bpe" ]; then \
Original file line number Diff line number Diff line change @@ -74,13 +74,15 @@ llama_test(test-tokenizer-0 NAME test-tokenizer-0-llama-spm ARGS ${CMAKE
74
74
llama_test (test -tokenizer-0 NAME test -tokenizer-0-llama-bpe ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-llama-bpe.gguf )
75
75
llama_test (test -tokenizer-0 NAME test -tokenizer-0-phi-3 ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-phi-3.gguf )
76
76
llama_test (test -tokenizer-0 NAME test -tokenizer-0-falcon ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-falcon.gguf )
77
- llama_test (test -tokenizer-0 NAME test -tokenizer-0-deepseek-llm ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-deepseek-llm.gguf )
78
- llama_test (test -tokenizer-0 NAME test -tokenizer-0-deepseek-coder ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-deepseek-coder.gguf )
79
77
llama_test (test -tokenizer-0 NAME test -tokenizer-0-bert-bge ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-bert-bge.gguf )
80
78
# TODO: enable when fixed
79
+ # https://github.com/ggerganov/llama.cpp/pull/7036
81
80
#llama_test(test-tokenizer-0 NAME test-tokenizer-0-mpt ARGS ${CMAKE_CURRENT_SOURCE_DIR}/../models/ggml-vocab-mpt.gguf)
81
+ #llama_test(test-tokenizer-0 NAME test-tokenizer-0-deepseek-llm ARGS ${CMAKE_CURRENT_SOURCE_DIR}/../models/ggml-vocab-deepseek-llm.gguf)
82
+ #llama_test(test-tokenizer-0 NAME test-tokenizer-0-deepseek-coder ARGS ${CMAKE_CURRENT_SOURCE_DIR}/../models/ggml-vocab-deepseek-coder.gguf)
82
83
llama_test (test -tokenizer-0 NAME test -tokenizer-0-starcoder ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-starcoder.gguf )
83
84
llama_test (test -tokenizer-0 NAME test -tokenizer-0-gpt-2 ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-gpt-2.gguf )
85
+ llama_test (test -tokenizer-0 NAME test -tokenizer-0-refact ARGS ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab-refact.gguf )
84
86
85
87
# build test-tokenizer-1-bpe target once and add many tests
86
88
add_executable (test -tokenizer-1-bpe test -tokenizer-1-bpe.cpp )
You can’t perform that action at this time.
0 commit comments