We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 696d26e commit ba1367dCopy full SHA for ba1367d
1 file changed
src/models/sarvam-moe.cpp
@@ -2,10 +2,10 @@
2
3
llm_build_sarvam_moe::llm_build_sarvam_moe(const llama_model & model, const llm_graph_params & params) :
4
llm_graph_context(params) {
5
- const int64_t n_embd_head = hparams.n_embd_head_v;
+ const int64_t n_embd_head = hparams.n_embd_head_v();
6
const int64_t n_embd_gqa = hparams.n_embd_v_gqa();
7
8
- GGML_ASSERT(n_embd_head == hparams.n_embd_head_k);
+ GGML_ASSERT(n_embd_head == hparams.n_embd_head_k());
9
10
ggml_tensor * cur;
11
ggml_tensor * inpL;
0 commit comments