| 10050 | } |
| 10051 | |
| 10052 | bool llama_use_sparse_inference(const struct llama_model * model) { |
| 10053 | return model->sparse_deriv == GGML_SPARSE_INFERENCE; |
| 10054 | } |
| 10055 | |
| 10056 | int llama_n_vocab(const struct llama_model * model) { |
| 10057 | return model->vocab.id_to_token.size(); |
no outgoing calls
no test coverage detected