Skip to content

Commit a872790

Browse files
committed
merge : fix build
ggml-ci
1 parent 04155f0 commit a872790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama-model.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16559,7 +16559,7 @@ struct llm_build_lfm2 : public llm_graph_context {
1655916559
const int64_t n_seq_tokens = ubatch.n_seq_tokens;
1656016560
const int64_t n_seqs = ubatch.n_seqs;
1656116561
GGML_ASSERT(n_seqs != 0);
16562-
GGML_ASSERT(ubatch.equal_seqs);
16562+
GGML_ASSERT(ubatch.equal_seqs());
1656316563
GGML_ASSERT(ubatch.n_tokens == n_seq_tokens * n_seqs);
1656416564

1656516565
GGML_ASSERT(hparams.n_shortconv_l_cache > 1);

0 commit comments

Comments
 (0)