Skip to content

Commit 02ef2f9

Browse files
fix outdated asserts
1 parent 48e5699 commit 02ef2f9

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

examples/lookup/lookup-stats.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ int main(int argc, char ** argv){
3030

3131
// load the model
3232
std::tie(model, ctx) = llama_init_from_gpt_params(params);
33-
GGML_ASSERT(llama_n_vocab(model) < (1 << 16));
3433

3534
// tokenize the prompt
3635
std::vector<llama_token> inp;

examples/lookup/lookup.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ int main(int argc, char ** argv){
3838

3939
// load the model
4040
std::tie(model, ctx) = llama_init_from_gpt_params(params);
41-
GGML_ASSERT(llama_n_vocab(model) < (1 << 16));
4241

4342
// tokenize the prompt
4443
std::vector<llama_token> inp;

0 commit comments

Comments
 (0)