mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	llama : throw error if gguf fails to init from file
ggml-ci
This commit is contained in:
		@@ -1042,6 +1042,9 @@ struct llama_model_loader {
 | 
				
			|||||||
        };
 | 
					        };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        ctx_gguf = gguf_init_from_file(fname.c_str(), params);
 | 
					        ctx_gguf = gguf_init_from_file(fname.c_str(), params);
 | 
				
			||||||
 | 
					        if (!ctx_gguf) {
 | 
				
			||||||
 | 
					            throw std::runtime_error(format("%s: failed to load model from %s\n", __func__, fname.c_str()));
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        n_kv      = gguf_get_n_kv(ctx_gguf);
 | 
					        n_kv      = gguf_get_n_kv(ctx_gguf);
 | 
				
			||||||
        n_tensors = gguf_get_n_tensors(ctx_gguf);
 | 
					        n_tensors = gguf_get_n_tensors(ctx_gguf);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user