From e7fd31b57e10e18f04501cc48f5e0b982e263272 Mon Sep 17 00:00:00 2001 From: yangzongwen Date: Fri, 26 Sep 2025 14:13:04 +0800 Subject: [PATCH] fix log --- tf_adapter/optimizers/om_partition_subgraphs_pass.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf_adapter/optimizers/om_partition_subgraphs_pass.cc b/tf_adapter/optimizers/om_partition_subgraphs_pass.cc index 95511cde2..96da1c1c2 100644 --- a/tf_adapter/optimizers/om_partition_subgraphs_pass.cc +++ b/tf_adapter/optimizers/om_partition_subgraphs_pass.cc @@ -266,7 +266,7 @@ bool IsWhiteListSupport(const string &op_name, bool mix_compile_mode, const stri mutex_lock lock(support_node_mu); auto ret = not_support_nodes.insert(op_name); if (ret.second) { - ADP_LOG(INFO) << "node: " << op_name << " is not in white list, so currently not support."; + ADP_LOG(INFO) << "node: " << op_name << " is not in white list, so currently does not support."; } } -- Gitee