mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-19 09:15:18 +02:00
better error messages
This commit is contained in:
@@ -258,7 +258,7 @@ bool sdtype_load_model(const sd_load_model_inputs inputs) {
|
||||
sd_params->vae_on_cpu);
|
||||
|
||||
if (sd_ctx == NULL) {
|
||||
printf("\nError: KCPP SD Failed to create context!\n");
|
||||
printf("\nError: KCPP SD Failed to create context!\nIf using Flux/SD3.5, make sure you have ALL files required (e.g. VAE, T5, Clip...) or baked in!\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -9289,6 +9289,7 @@ static bool llm_load_tensors(
|
||||
LLAMA_LOG_DEBUG("%s: tensor '%s' (%s) (and %d others) cannot be used with preferred buffer type %s, using %s instead\n",
|
||||
__func__, first_moved_tensor->name, ggml_type_name(first_moved_tensor->type), n_moved_tensors - 1,
|
||||
ggml_backend_buft_name(first_moved_from_buft), ggml_backend_buft_name(first_moved_to_buft));
|
||||
LLAMA_LOG_DEBUG("(This is not an error, it just means some tensors will use CPU instead.)\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user