From 6e4c96772be32620f54a06e55c4d32e8cec85d59 Mon Sep 17 00:00:00 2001 From: Wang Yuchen Date: Mon, 19 Feb 2024 15:49:13 +0800 Subject: [PATCH] delete redundant spaces --- tf_adapter/kernels/geop_npu.cc | 2 +- tf_adapter/kernels/om_executor.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tf_adapter/kernels/geop_npu.cc b/tf_adapter/kernels/geop_npu.cc index 959784574..096f2447e 100644 --- a/tf_adapter/kernels/geop_npu.cc +++ b/tf_adapter/kernels/geop_npu.cc @@ -1420,7 +1420,7 @@ void GeOp::AddNodeAttrs(Node *node, bool &is_initialize) { } if (node->name() == "IterationOp") { this->need_iteration_ = true; - ADP_LOG(INFO) << "subgraph has iteration op."; + ADP_LOG(INFO) << "subgraph has iteration op."; } if (node->name().find("var_in_host") != std::string::npos) { is_host_graph_ = true; diff --git a/tf_adapter/kernels/om_executor.cc b/tf_adapter/kernels/om_executor.cc index 05c1586b3..969d71935 100644 --- a/tf_adapter/kernels/om_executor.cc +++ b/tf_adapter/kernels/om_executor.cc @@ -319,7 +319,7 @@ Status ModelProcess::ProcessDynamicOutput(const size_t index, const tensorflow:: ADP_LOG(INFO) << "current output " << index << " tensor is " << tensor.DebugString(); outputs.emplace_back(std::move(tensor)); if (outputs_feed_nullptr_vec_[index]) { - ADP_LOG(INFO) << "this output " << index << " need update nullptr."; + ADP_LOG(INFO) << "this output " << index << " need update nullptr."; (void)aclrtFree(dev_ptr); (void)aclUpdateDataBuffer(data_buf, nullptr, 0); } -- Gitee