MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / llama_model_arch_name

Function llama_model_arch_name

llama.cpp:2218–2224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2216//
2217
2218static std::string llama_model_arch_name(llm_arch arch) {
2219 auto it = LLM_ARCH_NAMES.find(arch);
2220 if (it == LLM_ARCH_NAMES.end()) {
2221 return "unknown";
2222 }
2223 return it->second;
2224}
2225
2226static std::string llama_model_ftype_name(llama_ftype ftype) {
2227 if (ftype & LLAMA_FTYPE_GUESSED) {

Callers 1

llama_model_descFunction · 0.85

Calls 2

findMethod · 0.80
endMethod · 0.45

Tested by

no test coverage detected