From a85f67db5b2703c7fa583f82ea1e100fbe144a27 Mon Sep 17 00:00:00 2001 From: slaren Date: Fri, 11 Oct 2024 15:22:52 +0200 Subject: [PATCH] change graph alloc fail print from debug to error --- ggml/src/ggml-backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-backend.cpp b/ggml/src/ggml-backend.cpp index 94237a30e..15d650150 100644 --- a/ggml/src/ggml-backend.cpp +++ b/ggml/src/ggml-backend.cpp @@ -2091,7 +2091,7 @@ static bool ggml_backend_sched_alloc_splits(ggml_backend_sched_t sched) { #endif ggml_gallocr_reserve_n(sched->galloc, &sched->graph, sched->node_backend_ids, sched->leaf_backend_ids); if (!ggml_gallocr_alloc_graph(sched->galloc, &sched->graph)) { - GGML_LOG_DEBUG("%s: failed to allocate graph\n", __func__); + GGML_LOG_ERROR("%s: failed to allocate graph\n", __func__); return false; } }