From 3f9f8899434ea719b765e1c362bd91da427eeff4 Mon Sep 17 00:00:00 2001 From: majianwei Date: Wed, 4 Jun 2025 11:21:34 +0800 Subject: [PATCH] fix log --- tf_adapter/kernels/geop_npu.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tf_adapter/kernels/geop_npu.cc b/tf_adapter/kernels/geop_npu.cc index 45008c9a8..20807bcb3 100644 --- a/tf_adapter/kernels/geop_npu.cc +++ b/tf_adapter/kernels/geop_npu.cc @@ -1099,7 +1099,8 @@ Status GeOp::AddGraph(OpKernelContext *ctx, const uint32_t &graph_id) { } SetReuseOptions("ge.exec.outputReuseMemIndexes", ctx->num_outputs(), sess_options_, init_options_, graph_options); - ADP_LOG(EVENT) << "[GEOP] call ge session add graph jit_compile: " << jit_compile_; + ADP_LOG(EVENT) << "[GEOP] call ge session add graph jit_compile: " + << jit_compile_ << ", graph_id: " << graph_id; graph_options["ge.exec.graphIOMemAllocMode"] = "ByGE"; const auto graph_option_ascend_string = ChangeStringToAscendString(graph_options); -- Gitee