test
This commit is contained in:
parent
5c8d759a3f
commit
6860c4bef3
2 changed files with 2 additions and 3 deletions
|
@ -334,7 +334,6 @@ static buft_list_t make_gpu_buft_list(ggml_backend_dev_t dev, enum llama_split_m
|
|||
return buft_list;
|
||||
}
|
||||
|
||||
|
||||
struct llama_model::impl {
|
||||
impl() {}
|
||||
~impl() {}
|
||||
|
@ -374,7 +373,7 @@ struct llama_model::impl {
|
|||
llama_model::llama_model(const struct llama_model_params & params) : params(params), pimpl(std::make_unique<impl>()) {
|
||||
}
|
||||
|
||||
llama_model::~llama_model() = default;
|
||||
llama_model::~llama_model() {}
|
||||
|
||||
void llama_model::load_stats(llama_model_loader & ml) {
|
||||
pimpl->n_elements = ml.n_elements;
|
||||
|
|
|
@ -334,7 +334,7 @@ struct llama_model {
|
|||
int64_t t_load_us = 0;
|
||||
int64_t t_start_us = 0;
|
||||
|
||||
llama_model(const struct llama_model_params & params);
|
||||
explicit llama_model(const struct llama_model_params & params);
|
||||
~llama_model();
|
||||
|
||||
void load_stats (llama_model_loader & ml);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue