From 2da52b19369f58c8bc2dcd50726dd2d271ff5929 Mon Sep 17 00:00:00 2001 From: Wagner Bruna Date: Thu, 14 May 2026 22:11:42 -0300 Subject: [PATCH] chore: do not report the fake VAE "allocation" as an error --- src/ggml_extend.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ggml_extend.hpp b/src/ggml_extend.hpp index c6cd1c3a1..d2e655cef 100644 --- a/src/ggml_extend.hpp +++ b/src/ggml_extend.hpp @@ -2732,6 +2732,9 @@ struct GGMLRunner { rebuild_params_tensor_set(); return true; } + } else { + LOG_DEBUG("%s skipping params allocation (no tensors)", get_desc().c_str()); + return true; } params_buffer = ggml_backend_alloc_ctx_tensors(params_ctx, params_backend); if (params_buffer == nullptr) {