Skip to content

Commit 63207d1

Browse files
committed
fix: change ignore_merges to bool
1 parent a6f16b8 commit 63207d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12200,7 +12200,7 @@ struct llm_tokenizer_bpe {
1220012200

1220112201
void tokenize(const std::string & text, std::vector<llama_vocab::id> & output) {
1220212202
int final_prev_index = -1;
12203-
int ignore_merges = false;
12203+
bool ignore_merges = false;
1220412204

1220512205
std::vector<std::string> word_collection;
1220612206
switch (vocab.type) {

0 commit comments

Comments
 (0)