From 62c64abeaf5f5fe819279a6d49ddc20b4f05ae21 Mon Sep 17 00:00:00 2001 From: Tosone Date: Wed, 26 Nov 2025 10:30:23 +0800 Subject: [PATCH] llama: remove init f16 tables --- src/llama.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/llama.cpp b/src/llama.cpp index ab2e9868af46..90dafdda52ae 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -69,13 +69,6 @@ bool llama_supports_rpc(void) { void llama_backend_init(void) { ggml_time_init(); - - // needed to initialize f16 tables - { - struct ggml_init_params params = { 0, NULL, false }; - struct ggml_context * ctx = ggml_init(params); - ggml_free(ctx); - } } void llama_numa_init(enum ggml_numa_strategy numa) {