diff --git a/graph/normal_graph/graph.cc b/graph/normal_graph/graph.cc index 9e38c51fffa06bf2e5b75f7c3ab58d99033350b2..92829c9bfb481d3641ca8d518fd9671bde069f14 100644 --- a/graph/normal_graph/graph.cc +++ b/graph/normal_graph/graph.cc @@ -631,8 +631,8 @@ graphStatus Graph::RemoveEdge(GNode &src_node, const int32_t src_port_index, const NodePtr dst_node_ptr = NodeAdapter::GNode2Node(dst_node); if (dst_node_ptr == nullptr) { - REPORT_CALL_ERROR("E18888", "dst gnode to node failed."); - GELOGE(GRAPH_FAILED, "[Get][Node] dst gnode to node failed."); + REPORT_CALL_ERROR("E18888", "dst gnode [%s] to node failed.", dst_node_ptr->GetName().c_str()); + GELOGE(GRAPH_FAILED, "[Get][Node] dst gnode [%s] to node failed.", dst_node_ptr->GetName().c_str()); return GRAPH_FAILED; } diff --git a/inc/external/exe_graph/runtime/tiling_context.h b/inc/external/exe_graph/runtime/tiling_context.h index a8a30ecf1e0b0c6c77bee49e2edc0d9ce7b2adff..c1430e05c4ef169861cdb339884069cc1447a335 100644 --- a/inc/external/exe_graph/runtime/tiling_context.h +++ b/inc/external/exe_graph/runtime/tiling_context.h @@ -241,6 +241,8 @@ class TilingContext : public ExtendedKernelContext { return ge::GRAPH_FAILED; } *p = block_dim; + std::cout << "zczczc Set block dim: " << block_dim << std::endl; + std::cout << "zczczc Addr of block dim: " << p << std::endl; return ge::GRAPH_SUCCESS; } /**