Browse Source

input_fp16_nodes in Case

tags/v1.3.0
lianghao 3 years ago
parent
commit
5f46a1faee
3 changed files with 178 additions and 21 deletions
  1. +7
    -0
      ge/graph/passes/multi_batch_clone_pass.cc
  2. +96
    -21
      ge/graph/preprocess/graph_preprocess.cc
  3. +75
    -0
      tests/ut/ge/graph/preprocess/graph_preprocess_unittest.cc

+ 7
- 0
ge/graph/passes/multi_batch_clone_pass.cc View File

@@ -42,6 +42,7 @@ const std::string kMultiBatchConstNode = "ascend_mbatch_shape_const";
const std::string kMultiBatchMapIndexNode = "ascend_mbatch_shape_mapindex";
const std::string kMultiBatchNodePostfix = "_ascend_mbatch_batch_";
const char *const kGetNextName = "IteratorV2";
const char *const kMbatchCaseName = "mbatch-switch-name";
} // namespace

inline bool IsGetNextType(const NodePtr &node) {
@@ -943,6 +944,12 @@ Status MultiBatchClonePass::SetMaxShapeToData(const NodePtr &node, size_t out_an
}
}
(void)AttrUtils::SetListInt(node->GetOpDesc(), ATTR_MBATCH_ORIGIN_INPUT_DIMS, data_shape.GetDims());
if (!AttrUtils::SetStr(node->GetOpDesc(), kMbatchCaseName, case_node_->GetName())) {
REPORT_CALL_ERROR("E19999", "Set Attr:%s to node:%s(%s) failed",
kMbatchCaseName, node->GetName().c_str(), node->GetType().c_str());
GELOGE(INTERNAL_ERROR, "Failed to add switchn attr on data node %s", node->GetName().c_str());
return INTERNAL_ERROR;
}

GeTensorDesc tensor(NodeUtils::GetOutputDesc(*node, kDataOutIndex));
std::vector<std::string> input_dims_str;


+ 96
- 21
ge/graph/preprocess/graph_preprocess.cc View File

@@ -609,7 +609,7 @@ Status ModifyDataNetOutputFormatAndShape(OpDescPtr &op_desc, uint32_t index, For
return SUCCESS;
}

Status CheckIfDynamicBatchScene(NodePtr &data_node, bool &is_dynamic_batch, NodePtr &switchn_node) {
Status CheckIfDynamicBatchScene(NodePtr &data_node, bool &is_dynamic_batch, NodePtr &mbatch_node, int32_t &index) {
is_dynamic_batch = false;
std::string related_node_name;
if (AttrUtils::GetStr(data_node->GetOpDesc(), kMbatchSwitchnName, related_node_name)) {
@@ -620,13 +620,17 @@ Status CheckIfDynamicBatchScene(NodePtr &data_node, bool &is_dynamic_batch, Node
data_node->GetName().c_str());
return INTERNAL_ERROR;
}
for (const NodePtr &next_node : data_node->GetOutNodes()) {
if (next_node->GetName() == related_node_name) {
switchn_node = next_node;

auto out_data_nodes_anchors = data_node->GetOutDataNodesAndAnchors();
for (const auto &out_data_node_anchor : out_data_nodes_anchors) {
if (out_data_node_anchor.first->GetName() == related_node_name) {
mbatch_node = out_data_node_anchor.first;
index = out_data_node_anchor.second->GetIdx();
break;
}
}
if (switchn_node == nullptr) {

if (mbatch_node == nullptr) {
ErrorManager::GetInstance().ATCReportErrMessage(
"E15002", {"opname", "value", "reason"},
{data_node->GetName(), related_node_name, "but can not find it on the graph"});
@@ -679,7 +683,7 @@ Status CheckIfNeedSetNdFormat(const NodePtr &node_ptr) {
// In the dynamic shape process, transnode insertion by FE is advanced to the stage of whole
// graph optimization, GE only sets the final data_type/format/shape information for variable,
// data and netoutput, and no longer inserts the transnode.
Status ProcessInputDtDynShape(NodePtr &node_ptr, bool &is_dynamic_batch, NodePtr &switchn_node, DataType &dt_set) {
Status ProcessInputDtDynShape(NodePtr &node_ptr, NodePtr &switchn_node, DataType &dt_set) {
GE_CHECK_NOTNULL(node_ptr);
auto op_desc = node_ptr->GetOpDesc();
GE_CHECK_NOTNULL(op_desc);
@@ -712,19 +716,84 @@ Status ProcessInputDtDynShape(NodePtr &node_ptr, bool &is_dynamic_batch, NodePtr
GELOGI("[Process][InputDynShape] Set input and output size of node [%s] success.", node_ptr->GetName().c_str());
}

if (is_dynamic_batch) {
GELOGI("The node [%s] dtype set fp16", switchn_node->GetName().c_str());
auto switchn_op_desc = switchn_node->GetOpDesc();
GE_CHECK_NOTNULL(switchn_op_desc);
auto switchn_input = switchn_op_desc->MutableInputDesc(0);
GE_CHECK_NOTNULL(switchn_input);
switchn_input->SetDataType(dt_set);
for (uint32_t i = 0; i < switchn_node->GetAllOutDataAnchorsSize(); ++i) {
const GeTensorDescPtr &switchn_output = switchn_op_desc->MutableOutputDesc(i);
GE_CHECK_NOTNULL(switchn_output);
switchn_output->SetDataType(dt_set);
return SUCCESS;
}

Status UpdateInputOutputDataType(NodePtr &mbatch_node, DataType &dt_set, int32_t index) {
auto mbatch_desc = mbatch_node->GetOpDesc();
GE_CHECK_NOTNULL(mbatch_desc);
auto mbatch_input = mbatch_desc->MutableInputDesc(index);
GE_CHECK_NOTNULL(mbatch_input);
mbatch_input->SetDataType(dt_set);

if (mbatch_node->GetType() == SWITCHN) {
for (uint32_t i = 0; i < mbatch_node->GetAllOutDataAnchorsSize(); ++i) {
const GeTensorDescPtr &mbatch_output = mbatch_desc->MutableOutputDesc(i);
GE_CHECK_NOTNULL(mbatch_output);
mbatch_output->SetDataType(dt_set);
}
}

GELOGD("Update input and output data type of node[name: %s, type: %s, input index: %d] to %s.",
mbatch_node->GetName().c_str(), mbatch_node->GetType().c_str(), index,
TypeUtils::DataTypeToSerialString(dt_set).c_str());

return SUCCESS;
}

Status UpdateSubgraphDataOfCase(NodePtr &mbatch_node, DataType &dt_set, int32_t index) {
if (mbatch_node->GetType() != CASE) {
return SUCCESS;
}

auto subgraphs = NodeUtils::GetAllSubgraphs(*mbatch_node);
for (const auto &subgraph : subgraphs) {
GE_CHECK_NOTNULL(subgraph);
for (auto &sub_node : subgraph->GetDirectNode()) {
GE_CHECK_NOTNULL(sub_node);
if (sub_node->GetType() != DATA) {
continue;
}

auto data_desc = sub_node->GetOpDesc();
GE_CHECK_NOTNULL(data_desc);
int32_t parent_node_index = 0;
if (!AttrUtils::GetInt(data_desc, ATTR_NAME_PARENT_NODE_INDEX, parent_node_index) ||
(parent_node_index != index)) {
continue;
}

auto data_input = data_desc->MutableInputDesc(0);
GE_CHECK_NOTNULL(data_input);
data_input->SetDataType(dt_set);
auto data_output = data_desc->MutableOutputDesc(0);
GE_CHECK_NOTNULL(data_output);
data_output->SetDataType(dt_set);
GELOGD("Update input and output data type of node[name: %s, type: %s, parent_node_index: %d] in subgraph %s "
"to %s.", data_desc->GetName().c_str(), data_desc->GetType().c_str(), parent_node_index,
subgraph->GetName().c_str(), TypeUtils::DataTypeToSerialString(dt_set).c_str());
}
}

return SUCCESS;
}

Status ProcessMbatchScene(NodePtr &mbatch_node, DataType &dt_set, int32_t index) {
GELOGI("The node [%s] dtype set fp16.", mbatch_node->GetName().c_str());
if (UpdateInputOutputDataType(mbatch_node, dt_set, index) != SUCCESS) {
GELOGE(FAILED, "Update input and output data type of node[name: %s, type: %s] to %s failed.",
mbatch_node->GetName().c_str(), mbatch_node->GetType().c_str(),
TypeUtils::DataTypeToSerialString(dt_set).c_str());
return FAILED;
}

if (UpdateSubgraphDataOfCase(mbatch_node, dt_set, index) != SUCCESS) {
GELOGE(FAILED, "Update input and output data type of Data node[parent_node_index: %d] in subgraphs of "
"node[name: %s, type: %s] to %s failed.", index, mbatch_node->GetName().c_str(),
mbatch_node->GetType().c_str(), TypeUtils::DataTypeToSerialString(dt_set).c_str());
return FAILED;
}

return SUCCESS;
}

@@ -785,21 +854,27 @@ Status ProcessDataNodeDynShape(NodePtr &node_ptr) {
DataType dt_set = TypeUtils::SerialStringToDataType(set_dt_str);
GELOGI("input_fp16 is found, the node name is %s.", node_ptr->GetName().c_str());
bool is_dynamic_batch = false;
NodePtr switchn_node = nullptr;
if (CheckIfDynamicBatchScene(node_ptr, is_dynamic_batch, switchn_node)) {
NodePtr mbatch_node = nullptr;
int32_t index = 0;
if (CheckIfDynamicBatchScene(node_ptr, is_dynamic_batch, mbatch_node, index)) {
GELOGE(INTERNAL_ERROR, "CheckIfDynamicBatchScene failed");
return FAILED;
}
if (ProcessInputDtDynShape(node_ptr, is_dynamic_batch, switchn_node, dt_set) != SUCCESS) {
if (ProcessInputDtDynShape(node_ptr, mbatch_node, dt_set) != SUCCESS) {
GELOGE(INTERNAL_ERROR, "ProcessInputFP16 failed");
return FAILED;
}
if (is_dynamic_batch && ProcessMbatchScene(mbatch_node, dt_set, index) != SUCCESS) {
GELOGE(INTERNAL_ERROR, "ProcessMbatchScene failed");
return FAILED;
}

// check if need to set format
string set_format;
bool ret = ge::AttrUtils::GetStr(node_ptr->GetOpDesc(), ATTR_ATC_USER_DEFINE_FORMAT, set_format);
if (ret && (!set_format.empty()) && TypeUtils::SerialStringToFormat(set_format) == FORMAT_NC1HWC0) {
GELOGI("The format of node [%s] should be set NC1HWC0.", node_ptr->GetName().c_str());
if (ProcessInputNC1HWC0DynShape(node_ptr, is_dynamic_batch, switchn_node) != SUCCESS) {
if (ProcessInputNC1HWC0DynShape(node_ptr, is_dynamic_batch, mbatch_node) != SUCCESS) {
GELOGE(INTERNAL_ERROR, "ProcessInputNC1HWC0 failed");
return FAILED;
}


+ 75
- 0
tests/ut/ge/graph/preprocess/graph_preprocess_unittest.cc View File

@@ -72,6 +72,41 @@ ComputeGraphPtr BuildGraph3() {
return builder.GetGraph();
}

/*
* MapIndex Data1 subgraph1 subgraph2
* \ /
* Case ===> Data2 Data3
* |
* Netoutput
*/
ComputeGraphPtr BuildGraph4() {
auto builder = ut::GraphBuilder("mbatch_Case");

auto data1 = builder.AddNode("data1", DATA, 1, 1);
auto data_desc = data1->GetOpDesc();
AttrUtils::SetStr(data_desc, ATTR_ATC_USER_DEFINE_DATATYPE, "DT_FLOAT16");
AttrUtils::SetStr(data_desc, "mbatch-switch-name", "case1");
AttrUtils::SetInt(data_desc, ATTR_NAME_INDEX, 0);

auto mapindex1 = builder.AddNode("mapindex1", "MapIndex", 0, 1);
auto case1 = builder.AddNode("case1", CASE, 2, 1);
auto netoutput1 = builder.AddNode("netoutput1", NETOUTPUT, 1, 0);

builder.AddDataEdge(mapindex1, 0, case1, 0);
builder.AddDataEdge(data1, 0, case1, 1);
builder.AddDataEdge(case1, 0, netoutput1, 0);

return builder.GetGraph();
}

ComputeGraphPtr BuildGraph4_Subgraph(string graph_name) {
auto builder = ut::GraphBuilder(graph_name);
auto data1 = builder.AddNode(graph_name + "_data1", DATA, 1, 1);
auto data_desc = data1->GetOpDesc();
AttrUtils::SetInt(data_desc, ATTR_NAME_PARENT_NODE_INDEX, 1);
return builder.GetGraph();
}

TEST_F(UtestGraphPreproces, test_dynamic_input_shape_parse) {
ge::GraphPrepare graph_prepare;
graph_prepare.compute_graph_ = BuildGraph1();
@@ -118,4 +153,44 @@ TEST_F(UtestGraphPreproces, test_update_input_output1) {
Status ret = graph_prepare.UpdateInputOutputByOptions();
EXPECT_EQ(ret, SUCCESS);
}

TEST_F(UtestGraphPreproces, test_update_dtype_mbatch_case) {
ge::GraphPrepare graph_prepare;
graph_prepare.compute_graph_ = BuildGraph4();
auto parent_graph = graph_prepare.compute_graph_;
auto subgraph1 = BuildGraph4_Subgraph("subgraph1");
auto subgraph2 = BuildGraph4_Subgraph("subgraph2");

auto data1 = parent_graph->FindNode("data1");
auto data_desc = data1->GetOpDesc();

auto case_node = parent_graph->FindNode("case1");
EXPECT_NE(case_node, nullptr);
case_node->GetOpDesc()->AddSubgraphName("subgraph1");
case_node->GetOpDesc()->SetSubgraphInstanceName(0, "subgraph1");
subgraph1->SetParentNode(case_node);
subgraph1->SetParentGraph(parent_graph);
EXPECT_EQ(parent_graph->AddSubgraph("subgraph1", subgraph1), GRAPH_SUCCESS);

case_node->GetOpDesc()->AddSubgraphName("subgraph2");
case_node->GetOpDesc()->SetSubgraphInstanceName(1, "subgraph2");
subgraph2->SetParentNode(case_node);
subgraph2->SetParentGraph(parent_graph);
EXPECT_EQ(parent_graph->AddSubgraph("subgraph2", subgraph2), GRAPH_SUCCESS);

Status ret = graph_prepare.UpdateInputOutputByOptions();
EXPECT_EQ(ret, SUCCESS);

auto case_desc = case_node->GetOpDesc();
auto case_input = case_desc->MutableInputDesc(1);
EXPECT_EQ(case_input->GetDataType(), 1);

auto sub1_data1 = subgraph1->FindNode("subgraph1_data1");
EXPECT_NE(sub1_data1, nullptr);
auto data1_desc = sub1_data1->GetOpDesc();
auto data1_input = data1_desc->MutableInputDesc(0);
EXPECT_EQ(data1_input->GetDataType(), 1);
auto data1_output = data1_desc->MutableOutputDesc(0);
EXPECT_EQ(data1_output->GetDataType(), 1);
}
}

Loading…
Cancel
Save