Skip to content

Commit 18f252d

Browse files
committed
build: fix Qwen3.5 fatal warnings
1 parent 202f464 commit 18f252d

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

src/models/qwen35.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ llama_model_qwen35::graph::graph(const llama_model & model, const llm_graph_para
158158
ggml_tensor * inp_pos = build_inp_pos();
159159
ggml_tensor * inp_out_ids = build_inp_out_ids();
160160
const bool need_full_h_pre_norm = cparams.embeddings_pre_norm && !cparams.embeddings_pre_norm_masked;
161-
const int64_t n_seqs = ubatch.n_seqs;
162161
const int64_t n_seq_tokens = ubatch.n_seq_tokens;
163162
const int64_t dflash_capture_n_seqs =
164163
ubatch.n_seqs_unq > 1 ? (int64_t) ubatch.n_seqs_unq : 1;

src/models/qwen35moe.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ llama_model_qwen35moe::graph::graph(const llama_model & model, const llm_graph_p
181181
ggml_tensor * inp_pos = build_inp_pos();
182182
ggml_tensor * inp_out_ids = build_inp_out_ids();
183183
const bool need_full_h_pre_norm = cparams.embeddings_pre_norm && !cparams.embeddings_pre_norm_masked;
184-
const int64_t n_seqs = ubatch.n_seqs;
185184
const int64_t n_seq_tokens = ubatch.n_seq_tokens;
186185
const int64_t dflash_capture_n_seqs =
187186
ubatch.n_seqs_unq > 1 ? (int64_t) ubatch.n_seqs_unq : 1;

0 commit comments

Comments
 (0)