From f83f0f44a8a3239e64f1162eafad10ad299723be Mon Sep 17 00:00:00 2001 From: Yangzw Date: Sun, 28 Sep 2025 12:25:32 +0000 Subject: [PATCH] !3030 fix log Merge pull request !3030 from Yangzw/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