已合并
fix: correct typo in reshape recovery pass log #4468
fix: correct typo in reshape recovery pass log #4468
已合并
洪跃城创建于 9 天前
1 个文件变更+1-1
@@ -50,7 +50,7 @@ Status InsertReshapeIfNeed(const NodePtr &node,
50 const auto &dst_tensor_dims = dst_tensor->GetShape().GetDims();50 const auto &dst_tensor_dims = dst_tensor->GetShape().GetDims();
51 if ((std::any_of(src_tensor_dims.begin(), src_tensor_dims.end(), [](int64_t val) { return val < 0; })) ||51 if ((std::any_of(src_tensor_dims.begin(), src_tensor_dims.end(), [](int64_t val) { return val < 0; })) ||
52 (std::any_of(dst_tensor_dims.begin(), dst_tensor_dims.end(), [](int64_t val) { return val < 0; }))) {52 (std::any_of(dst_tensor_dims.begin(), dst_tensor_dims.end(), [](int64_t val) { return val < 0; }))) {
53- GELOGD("No need to insert reshape node between %s nad %s.", node->GetName().c_str(),53+ GELOGD("No need to insert reshape node between %s and %s.", node->GetName().c_str(),
54 dst_node->GetName().c_str());54 dst_node->GetName().c_str());
55 is_dynamic = true;55 is_dynamic = true;
56 }56 }