|
|
|
/**
|
|
|
|
* Copyright 2020 Huawei Technologies Co., Ltd
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "graph/passes/ctrl_edge_transfer_pass.h"
|
|
|
|
|
|
|
|
#include "framework/common/debug/ge_log.h"
|
|
|
|
#include "framework/common/ge_inner_error_codes.h"
|
|
|
|
#include "framework/common/util.h"
|
|
|
|
#include "graph/utils/graph_utils.h"
|
|
|
|
#include "graph/debug/ge_attr_define.h"
|
|
|
|
|
|
|
|
namespace ge {
|
|
|
|
/* Pass Explaination:
|
|
|
|
*
|
|
|
|
* After optimizing such as constant folding, it will form the following ctrl relationship
|
|
|
|
* The sceno like this is unreasonable and when unknown shape, it will be error because
|
|
|
|
* constant does not generate task. So when graph is stability, transfer the ctrl edge to
|
|
|
|
* next op and guatantee the timing relationship
|
|
|
|
*
|
|
|
|
* A(ctrl edge)----constant------(ctrl edge)B or A(ctrl edge)----constant-----(data edge)B
|
|
|
|
*
|
|
|
|
* when after process, it will be like as follows:
|
|
|
|
*
|
|
|
|
* A constant
|
|
|
|
* \ /
|
|
|
|
* B
|
|
|
|
*/
|
|
|
|
Status CtrlEdgeTransferPass::Run(ge::ComputeGraphPtr graph) {
|
|
|
|
GELOGD("CtrlEdgeTransferPass start running");
|
|
|
|
GE_CHECK_NOTNULL(graph);
|
|
|
|
|
|
|
|
bool is_dynamic_shape = false;
|
|
|
|
(void)AttrUtils::GetBool(graph, ATTR_NAME_DYNAMIC_SHAPE_PARTITIONED, is_dynamic_shape);
|
|
|
|
if (!is_dynamic_shape) {
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ge::NodePtr &n : graph->GetDirectNode()) {
|
|
|
|
auto op_desc = n->GetOpDesc();
|
|
|
|
if (op_desc == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto op_type = op_desc->GetType();
|
|
|
|
if (op_type == CONSTANT || op_type == CONSTANTOP) {
|
|
|
|
if (n->GetInAllNodes().empty()) {
|
|
|
|
GELOGD("[CtrlEdgeTransferPass] node [%s] in nodes is empty", n->GetName().c_str());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
GELOGD("start to tranfer ctrl edge for const node [%s]", n->GetName().c_str());
|
|
|
|
|
|
|
|
for (auto &in_control_node : n->GetInControlNodes()) {
|
|
|
|
GE_CHECK_NOTNULL(in_control_node);
|
|
|
|
GE_CHK_STATUS_RET(ge::GraphUtils::RemoveEdge(in_control_node->GetOutControlAnchor(),
|
|
|
|
n->GetInControlAnchor()), "remove edge failed");
|
|
|
|
for (auto &out_node : n->GetOutNodes()) {
|
|
|
|
if (out_node == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
GE_CHK_STATUS_RET(ge::GraphUtils::AddEdge(in_control_node->GetOutControlAnchor(),
|
|
|
|
out_node->GetInControlAnchor()), "add edge failed.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GELOGD("CtrlEdgeTransferPass running success!");
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
} // namespace ge
|