From d9841179ff4b9b04356b876aff80bc0b7146e9d9 Mon Sep 17 00:00:00 2001 From: huanruizhi Date: Wed, 16 Jul 2025 09:15:24 +0800 Subject: [PATCH] fix log --- tf_adapter/kernels/geop_npu.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tf_adapter/kernels/geop_npu.cc b/tf_adapter/kernels/geop_npu.cc index 88854e115..ea2d28658 100644 --- a/tf_adapter/kernels/geop_npu.cc +++ b/tf_adapter/kernels/geop_npu.cc @@ -523,8 +523,7 @@ void GeOp::Initialize(OpKernelConstruction *ctx) { init_flag_ = true; int64 endTime = InferShapeUtil::GetCurrentTimestap(); - ADP_LOG(EVENT) << "[GEOP] GeOp Initialize success, cost:" - << " [" << ((endTime - startTime) / kMicrosToMillis) << " ms]."; + ADP_LOG(EVENT) << "[GEOP] GeOp Initialize success, cost:[" << ((endTime - startTime) / kMicrosToMillis) << " ms]."; return; } -- Gitee