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