| 41 | } |
| 42 | |
| 43 | uint32_t llama_hparams::n_ff(uint32_t il) const { |
| 44 | if (il < n_layer) { |
| 45 | return n_ff_arr[il]; |
| 46 | } |
| 47 | |
| 48 | GGML_ABORT("fatal error"); |
| 49 | } |
| 50 | |
| 51 | uint32_t llama_hparams::n_gqa(uint32_t il) const { |
| 52 | const uint32_t n_head = this->n_head(il); |
no outgoing calls
no test coverage detected