| 153 | // this enum is only used in llama_params_fit_impl but needs to be defined outside of it to fix a Windows compilation issue |
| 154 | |
| 155 | class llama_params_fit_exception : public std::runtime_error { |
| 156 | using std::runtime_error::runtime_error; |
| 157 | }; |
| 158 | |
| 159 | static void llama_params_fit_impl( |
| 160 | const char * path_model, struct llama_model_params * mparams, struct llama_context_params * cparams, |
no outgoing calls
no test coverage detected