Remove llamafile remnants (#1179)

This commit is contained in:
Kawrakow
2026-01-22 13:20:23 +02:00
committed by GitHub
parent 66caa42b53
commit 2a7cc09149
5 changed files with 0 additions and 28 deletions

View File

@@ -7883,7 +7883,6 @@ const char * llama_print_system_info(void) {
s += "SSSE3 = " + std::to_string(ggml_cpu_has_ssse3()) + " | ";
s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
s += "MATMUL_INT8 = " + std::to_string(ggml_cpu_has_matmul_int8()) + " | ";
s += "LLAMAFILE = " + std::to_string(ggml_cpu_has_llamafile()) + " | ";
return s.c_str();
}