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

Function llama_file_version_name

llama.cpp:1859–1867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1857};
1858
1859static const char * llama_file_version_name(llama_fver version) {
1860 switch (version) {
1861 case GGUF_FILE_VERSION_V1: return "GGUF V1 (support until nov 2023)";
1862 case GGUF_FILE_VERSION_V2: return "GGUF V2";
1863 case GGUF_FILE_VERSION_V3: return "GGUF V3 (latest)";
1864 }
1865
1866 return "unknown";
1867}
1868
1869static std::string llama_format_tensor_shape(const std::vector<int64_t> & ne) {
1870 char buf[256];

Callers 2

llama_model_loaderMethod · 0.70
llm_load_print_metaFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected