From: Georgi Gerganov Date: Tue, 9 Dec 2025 13:25:49 +0000 (+0200) Subject: metal : print node names for debugging (llama/17882) X-Git-Tag: upstream/0.9.4.395~37 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=2bd68b58acf5e3f7adc84806cc988a8b37fda9a5;p=pkg%2Fggml%2Fsources%2Fggml metal : print node names for debugging (llama/17882) --- diff --git a/src/ggml-metal/ggml-metal-ops.cpp b/src/ggml-metal/ggml-metal-ops.cpp index 9efd51ab..392addb8 100644 --- a/src/ggml-metal/ggml-metal-ops.cpp +++ b/src/ggml-metal/ggml-metal-ops.cpp @@ -221,7 +221,7 @@ static int ggml_metal_op_encode_impl(ggml_metal_op_t ctx, int idx) { } if (ctx->debug_graph > 0) { - GGML_LOG_DEBUG("%s: node[%5d] - %-12s %s\n", __func__, idx, ggml_op_name(node->op), is_concurrent ? "(concurrent)" : ""); + GGML_LOG_DEBUG("%s: node[%5d] - %-12s %-12s %s\n", __func__, idx, ggml_op_name(node->op), ggml_get_name(node), is_concurrent ? "(concurrent)" : ""); } if (ctx->debug_graph > 1) { GGML_TENSOR_LOCALS( int64_t, ne0, node->src[0], ne);