mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-10 17:14:36 +00:00
warn about unsupported arch
This commit is contained in:
parent
87d852b85c
commit
481f7a6fbc
1 changed files with 5 additions and 1 deletions
|
@ -174,10 +174,14 @@ extern "C"
|
||||||
{
|
{
|
||||||
printf("\n---\nIdentified as RWKV model: (ver %d)\nAttempting to Load...\n---\n", file_format);
|
printf("\n---\nIdentified as RWKV model: (ver %d)\nAttempting to Load...\n---\n", file_format);
|
||||||
}
|
}
|
||||||
else
|
else if(file_format==FileFormat::GGUF_GENERIC)
|
||||||
{
|
{
|
||||||
printf("\n---\nIdentified as GGUF model: (ver %d)\nAttempting to Load...\n---\n", file_format);
|
printf("\n---\nIdentified as GGUF model: (ver %d)\nAttempting to Load...\n---\n", file_format);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("\n---\nUnidentified Model Encountered: (ver %d)\n---\n", file_format);
|
||||||
|
}
|
||||||
ModelLoadResult lr = gpttype_load_model(inputs, file_format, file_format_meta);
|
ModelLoadResult lr = gpttype_load_model(inputs, file_format, file_format_meta);
|
||||||
if (lr == ModelLoadResult::FAIL || lr == ModelLoadResult::RETRY_LOAD)
|
if (lr == ModelLoadResult::FAIL || lr == ModelLoadResult::RETRY_LOAD)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue