|
- /**
- * Copyright 2019-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/build/graph_builder.h"
- #include "common/ge/ge_util.h"
- #include "common/helper/model_helper.h"
- #include "common/opskernel/ops_kernel_info_types.h"
- #include "graph/build/run_context.h"
- #include "graph/build/stream_graph_optimizer.h"
- #include "graph/manager/graph_var_manager.h"
- #include "graph/utils/node_utils.h"
- #include "graph/utils/type_utils.h"
- #include "init/gelib.h"
- #include "model/ge_model.h"
-
- using domi::BuildMode;
-
- namespace {
- const int32_t kInvalidPerfLevel = -1;
- } // namespace
- namespace ge {
- GraphBuilder::GraphBuilder() : build_mode_(BuildMode::GEN_TASK_WITH_FUSION), hcom_parallel_(false) {}
-
- void GraphBuilder::SetOptions(const ge::GraphManagerOptions &options) {
- stream_max_parallel_num_ = options.stream_max_parallel_num;
- hcom_parallel_ = options.hcom_parallel;
-
- if (options.perf_level == kInvalidPerfLevel) {
- build_mode_ = static_cast<int>(BuildMode::GEN_TASK_WITH_FUSION);
- } else {
- build_mode_ = options.perf_level;
- }
- }
-
- Status GraphBuilder::CalcOpParam(const ge::ComputeGraphPtr &graph) {
- GELOGI("Begin to calculate op running param.");
- GE_CHECK_NOTNULL(graph);
- auto instance_ptr = ge::GELib::GetInstance();
- if (instance_ptr == nullptr || !instance_ptr->InitFlag()) {
- GELOGE(GE_CLI_GE_NOT_INITIALIZED, "GraphBuilder: GE is not initialized");
- return GE_CLI_GE_NOT_INITIALIZED;
- }
-
- for (const auto &node_ptr : graph->GetAllNodes()) {
- GE_CHECK_NOTNULL(node_ptr->GetOpDesc());
- std::string kernel_lib_name = node_ptr->GetOpDesc()->GetOpKernelLibName();
- if (kernel_lib_name.empty()) {
- // reset op kernel lib
- (void)instance_ptr->DNNEngineManagerObj().GetDNNEngineName(node_ptr->GetOpDesc());
- kernel_lib_name = node_ptr->GetOpDesc()->GetOpKernelLibName();
- if (kernel_lib_name.empty()) {
- GELOGE(INTERNAL_ERROR, "Get node:%s(%s) kernel lib failed.", node_ptr->GetName().c_str(),
- node_ptr->GetType().c_str());
- return INTERNAL_ERROR;
- }
- }
-
- OpsKernelInfoStorePtr kernel_info = instance_ptr->OpsKernelManagerObj().GetOpsKernelInfoStore(kernel_lib_name);
- if (kernel_info != nullptr) {
- auto ret = SetInputSize(node_ptr);
- if (ret != SUCCESS) {
- GELOGE(ret, "Set node inputDesc size failed, node name is %s", node_ptr->GetName().c_str());
- return ret;
- }
- ret = kernel_info->CalcOpRunningParam(*node_ptr);
- if (ret != SUCCESS) {
- GELOGE(ret, "Calculate op running param failed, node name is %s", node_ptr->GetName().c_str());
- return ret;
- }
- } else {
- GELOGE(GE_GRAPH_PARAM_NULLPTR, "Get op %s ops kernel info store failed", node_ptr->GetName().c_str());
- return INTERNAL_ERROR;
- }
- }
-
- auto parent_node = graph->GetParentNode();
- if (parent_node == nullptr) {
- GELOGI("Graph[%s] do not have parent node, no need update parent node output size.", graph->GetName().c_str());
- return SUCCESS;
- }
-
- GE_CHK_STATUS_RET(UpdateParentNodeOutputSize(graph, parent_node));
- GELOGI("Success to calculate op running param.");
- return SUCCESS;
- }
-
- Status GraphBuilder::UpdateParentNodeOutputSize(const ge::ComputeGraphPtr &graph, ge::NodePtr &parent_node_ptr) {
- GELOGI("Begin to update parent node[%s] of graph[%s] output size.", parent_node_ptr->GetName().c_str(),
- graph->GetName().c_str());
- auto parent_op_desc = parent_node_ptr->GetOpDesc();
- GE_CHECK_NOTNULL(parent_op_desc);
- bool is_unknown_shape = false;
- if (!AttrUtils::GetBool(parent_op_desc, ATTR_NAME_IS_UNKNOWN_SHAPE, is_unknown_shape)) {
- GELOGE(PARAM_INVALID, "Get op %s unknown shape attr failed.", parent_op_desc->GetName().c_str());
- return PARAM_INVALID;
- }
- if (is_unknown_shape) {
- GELOGI("Current graph[%s] is unknown, no need to update parent node[%s] output size.", graph->GetName().c_str(),
- parent_node_ptr->GetName().c_str());
- return SUCCESS;
- }
- for (const auto &node_ptr : graph->GetDirectNode()) {
- if (node_ptr->GetType() != NETOUTPUT) {
- continue;
- }
- auto op_desc = node_ptr->GetOpDesc();
- GE_CHECK_NOTNULL(op_desc);
- for (const auto &in_data_anchor : node_ptr->GetAllInDataAnchors()) {
- auto index = in_data_anchor->GetIdx();
- ge::GeTensorDesc desc_temp = op_desc->GetInputDesc(index);
- int64_t size = 0;
- GE_IF_BOOL_EXEC(ge::TensorUtils::GetSize(desc_temp, size) != SUCCESS, GELOGI("Get size failed!"));
- uint32_t parent_index = 0;
- if (!AttrUtils::GetInt(desc_temp, ATTR_NAME_PARENT_NODE_INDEX, parent_index)) {
- GELOGE(INTERNAL_ERROR, "NetOutput input tensor %d, attr %s not found.", index,
- ATTR_NAME_PARENT_NODE_INDEX.c_str());
- return INTERNAL_ERROR;
- }
- ge::GeTensorDesc parent_desc_temp = parent_op_desc->GetOutputDesc(parent_index);
- ge::TensorUtils::SetSize(parent_desc_temp, size);
- GE_CHK_STATUS_RET(parent_op_desc->UpdateOutputDesc(parent_index, parent_desc_temp));
- GELOGI("Update parent node[%s] output index[%u] to size[%ld].", parent_node_ptr->GetName().c_str(), parent_index,
- size);
- }
- }
- return SUCCESS;
- }
-
- Status GraphBuilder::Build(ComputeGraphPtr &comp_graph, std::vector<SubGraphInfoPtr> &subgraph_ptr_list,
- GeRootModelPtr &ge_root_model_ptr, uint64_t session_id) {
- GELOGI("Start to build model.");
- if (comp_graph == nullptr) {
- GELOGE(GE_GRAPH_PARAM_NULLPTR, "Graph build comp_graph is null.");
- return GE_GRAPH_PARAM_NULLPTR;
- }
- ge_root_model_ptr = MakeShared<ge::GeRootModel>(comp_graph);
- if (ge_root_model_ptr == nullptr) {
- return MEMALLOC_FAILED;
- }
- GeModelPtr ge_model_ptr = nullptr;
- bool is_dynamic_shape = false;
- // To be compatible with the old process, do not verify the return value temporarily.
- (void)AttrUtils::GetBool(comp_graph, ATTR_NAME_DYNAMIC_SHAPE_PARTITIONED, is_dynamic_shape);
- if (is_dynamic_shape) {
- GE_CHK_STATUS_RET(
- BuildForDynamicShapeGraph(comp_graph, subgraph_ptr_list, ge_root_model_ptr, ge_model_ptr, session_id),
- "Build for dynamic shape graph failed.");
- return SUCCESS;
- }
-
- GE_CHK_STATUS_RET(BuildForKnownShapeGraph(comp_graph, subgraph_ptr_list, ge_model_ptr, session_id),
- "Build for known shape graph failed.");
- ge_root_model_ptr->SetSubgraphInstanceNameToModel(comp_graph->GetName(), ge_model_ptr);
- return SUCCESS;
- }
-
- Status GraphBuilder::BuildForKnownShapeGraph(ComputeGraphPtr &comp_graph,
- std::vector<SubGraphInfoPtr> &subgraph_ptr_list, GeModelPtr &ge_model_ptr,
- uint64_t session_id) {
- GELOGI("Begin to build known shape graph[%s].", comp_graph->GetName().c_str());
- Status ret = SecondPartition(comp_graph, subgraph_ptr_list);
- GE_CHK_STATUS_RET(ret, "Graph[%s] second partition Failed.", comp_graph->GetName().c_str());
- auto subgraph_map = graph_partitioner_.GetSubGraphMap();
-
- GE_TIMESTAMP_START(BuildSubgraph);
- ge::ModelBuilder builder(comp_graph, subgraph_map, stream_max_parallel_num_, hcom_parallel_, build_mode_);
- GE_DUMP(comp_graph, "BeforePreBuildModel");
- GE_TIMESTAMP_START(PreBuildModel);
- GE_CHK_STATUS_RET(builder.PreBuildModel(), "Graph[%s] builder PreBuildModel() return fail.",
- comp_graph->GetName().c_str());
- GE_TIMESTAMP_END(PreBuildModel, "GraphBuilder::PreBuildModel");
-
- GE_DUMP(comp_graph, "AfterPreBuildModel");
- GE_TIMESTAMP_START(CalcOpParam);
- GE_CHK_STATUS_RET(CalcOpParam(comp_graph), "Graph[%s] builder CalcOpParam() return fail.",
- comp_graph->GetName().c_str());
- GE_TIMESTAMP_END(CalcOpParam, "GraphBuilder::CalcOpParam");
- GE_DUMP(comp_graph, "AfterCalcOpParam");
-
- ModelPtr model_ptr = MakeShared<ge::Model>();
- if (model_ptr == nullptr) {
- return MEMALLOC_FAILED;
- }
- GE_TIMESTAMP_START(BuildModelForGetTask);
- GE_CHK_STATUS_RET(builder.BuildModelForGetTask(*model_ptr), "Graph[%s] builder BuildModelForGetTask() return fail.",
- comp_graph->GetName().c_str());
- GE_TIMESTAMP_END(BuildModelForGetTask, "GraphBuilder::BuildModelForGetTask");
- GE_DUMP(comp_graph, "AfterBuildModel");
-
- GE_TIMESTAMP_START(GetTaskInfo);
- ret = GetTaskInfo(builder, model_ptr, comp_graph, subgraph_map, session_id);
- GE_TIMESTAMP_END(GetTaskInfo, "GraphBuilder::GetTaskInfo");
- GE_DUMP(comp_graph, "AfterGetTask");
- if (ret != SUCCESS) {
- GELOGE(ret, "Graph[%s] builder GetTaskInfo() return fail.", comp_graph->GetName().c_str());
- return ret;
- }
-
- ge_model_ptr = MakeShared<ge::GeModel>();
- if (ge_model_ptr == nullptr) {
- return MEMALLOC_FAILED;
- }
- GE_CHK_STATUS_RET(builder.SaveDataToModel(*model_ptr, *ge_model_ptr),
- "Graph[%s] builder SaveDataToModel() return fail.", comp_graph->GetName().c_str());
- GELOGI("Success to build graph[%s] model.", comp_graph->GetName().c_str());
- GE_TIMESTAMP_END(BuildSubgraph, "GraphBuilder::Build");
- return SUCCESS;
- }
-
- Status GraphBuilder::BuildForUnknownShapeGraph(ComputeGraphPtr &comp_graph, GeModelPtr &ge_model_ptr,
- uint64_t session_id) {
- GELOGI("Begin to build unknown shape graph[%s].", comp_graph->GetName().c_str());
- GE_TIMESTAMP_START(CalcOpParam);
- GE_CHK_STATUS_RET(CalcOpParam(comp_graph), "Graph[%s] builder CalcOpParam() return fail.",
- comp_graph->GetName().c_str());
- GE_TIMESTAMP_END(CalcOpParam, "GraphBuilder::CalcOpParam");
- GE_DUMP(comp_graph, "AfterCalcOpParam");
- Graph2SubGraphInfoList subgraph_map;
- ge::ModelBuilder builder(comp_graph, subgraph_map, stream_max_parallel_num_, hcom_parallel_, build_mode_);
- ModelPtr model_ptr = MakeShared<ge::Model>();
- if (model_ptr == nullptr) {
- return MEMALLOC_FAILED;
- }
- GE_TIMESTAMP_START(BuildModelForGetDynShapeTask);
- GE_CHK_STATUS_RET(builder.BuildModelForGetDynShapeTask(*model_ptr),
- "Graph[%s] builder BuildModelForGetDynShapeTask() return fail.", comp_graph->GetName().c_str());
- GE_TIMESTAMP_END(BuildModelForGetDynShapeTask, "GraphBuilder::BuildModelForGetDynShapeTask");
- GE_TIMESTAMP_START(GetTaskInfo);
- Status ret = GetTaskInfo(builder, model_ptr, comp_graph, subgraph_map, session_id);
- GE_TIMESTAMP_END(GetTaskInfo, "GraphBuilder::GetTaskInfo");
-
- GraphUtils::DumpGEGraph(comp_graph, "AfterGetTask");
- GraphUtils::DumpGEGraphToOnnx(*comp_graph, "AfterGetTask");
- if (ret != SUCCESS) {
- GELOGE(ret, "Graph[%s] builder GetTaskInfo() return fail.", comp_graph->GetName().c_str());
- return ret;
- }
- ge_model_ptr = MakeShared<ge::GeModel>();
- if (ge_model_ptr == nullptr) {
- return MEMALLOC_FAILED;
- }
- GE_CHK_STATUS_RET(builder.SaveDataToModel(*model_ptr, *ge_model_ptr),
- "Graph[%s] builder SaveDataToModel() return fail.", comp_graph->GetName().c_str());
- GELOGI("Success to build graph[%s] model.", comp_graph->GetName().c_str());
- return SUCCESS;
- }
-
- Status GraphBuilder::BuildForDynamicShapeGraph(ComputeGraphPtr &comp_graph,
- std::vector<SubGraphInfoPtr> &subgraph_ptr_list,
- GeRootModelPtr &ge_root_model_ptr, GeModelPtr &ge_model_ptr,
- uint64_t session_id) {
- GELOGI("Start to build BuildForDynamicShape for dynamic shape.");
- for (const auto &node : comp_graph->GetDirectNode()) {
- auto op_desc = node->GetOpDesc();
- GE_CHECK_NOTNULL(op_desc);
- if (node->GetType() == DATA) {
- GE_CHK_STATUS_RET(CalcDynShapeRootGraphDataSize(op_desc), "Calc dynamic shape root graph data[%s] size failed.",
- op_desc->GetName().c_str());
- }
-
- // ATTR_NAME_IS_UNKNOWN_SHAPE is set on "graph partion" stage, but afer fusion , the graph may
- // be changed so here need to renew. For example , the scene followed:
- // (known)partioncall(known) (known)partioncall(known)
- // After fusion
- // | -->
- // (known)Unique(unknown)--->(unknow)Shape(unknown) (known)FuncDef(known)
- // if scene like this , it should be process as known shape graph
- bool is_unknown_shape = false;
- GE_CHK_STATUS_RET(ge::NodeUtils::GetNodeUnknownShapeStatus(*node, is_unknown_shape),
- "Get node[%s] shape status failed!", node->GetName().c_str());
- if (!is_unknown_shape) {
- GE_CHK_BOOL_EXEC(ge::AttrUtils::SetBool(op_desc, ATTR_NAME_IS_UNKNOWN_SHAPE, is_unknown_shape), return FAILED,
- "Renew node [%s] attr[%s] failed!", node->GetName().c_str(), ATTR_NAME_IS_UNKNOWN_SHAPE.c_str());
- GELOGD("renew node [%s] attr[%s] success! value is %d", node->GetName().c_str(),
- ATTR_NAME_IS_UNKNOWN_SHAPE.c_str(), is_unknown_shape);
- }
-
- vector<string> subgraph_names = op_desc->GetSubgraphInstanceNames();
- for (auto subgraph_name : subgraph_names) {
- ComputeGraphPtr subgraph = comp_graph->GetSubgraph(subgraph_name);
- bool is_unknown_shape = false;
- if (!AttrUtils::GetBool(op_desc, ATTR_NAME_IS_UNKNOWN_SHAPE, is_unknown_shape)) {
- GELOGE(PARAM_INVALID, "Get op %s unknown shape attr failed.", op_desc->GetName().c_str());
- return PARAM_INVALID;
- }
- if (is_unknown_shape) {
- // unknown shape build flow
- GE_CHK_STATUS_RET(BuildForUnknownShapeGraph(subgraph, ge_model_ptr, session_id),
- "Build for unknown shape graph failed.");
- } else {
- // known shape build flow
- GE_CHK_STATUS_RET(BuildForKnownShapeGraph(subgraph, subgraph_ptr_list, ge_model_ptr, session_id),
- "Build for known shape graph failed.");
- }
- ge_root_model_ptr->SetSubgraphInstanceNameToModel(subgraph_name, ge_model_ptr);
- }
- }
- return SUCCESS;
- }
-
- Status GraphBuilder::GetTaskInfo(const ge::ModelBuilder &builder, const ModelPtr &model_ptr,
- ComputeGraphPtr &comp_graph, Graph2SubGraphInfoList &subgraph_map,
- uint64_t session_id) {
- GE_CHECK_NOTNULL(model_ptr);
- GE_CHECK_NOTNULL(comp_graph);
-
- int64_t memory_size = 0;
- if (!AttrUtils::GetInt(model_ptr, ATTR_MODEL_MEMORY_SIZE, memory_size)) {
- GELOGE(INTERNAL_ERROR, "Get memory size fail.");
- return INTERNAL_ERROR;
- }
- int64_t weight_size = 0;
- if (!AttrUtils::GetInt(model_ptr, ATTR_MODEL_WEIGHT_SIZE, weight_size)) {
- GELOGE(INTERNAL_ERROR, "Get weight memory size fail.");
- return INTERNAL_ERROR;
- }
- auto *get_mem_base =
- reinterpret_cast<uint8_t *>(reinterpret_cast<uintptr_t>(ge::VarManager::Instance(0)->GetVarMemMaxSize()));
- uint8_t *get_weight_mem_base = get_mem_base;
- if (weight_size > 0) {
- get_weight_mem_base = get_mem_base + memory_size;
- }
-
- RunContextUtil run_context;
- Status ret = run_context.InitMemInfo(get_mem_base, memory_size, get_weight_mem_base, weight_size);
- if (ret != SUCCESS) {
- GELOGE(ret, "task_generator init mem info fail.");
- return ret;
- }
- auto weight_buffer = builder.GetWeightBuffer();
- ret = run_context.CreateRunContext(*model_ptr, comp_graph, weight_buffer, session_id);
- if (ret != SUCCESS) {
- GELOGE(ret, "runContext create run context fail.");
- return ret;
- }
-
- StreamGraphOptimizer stream_optimizer;
- ret = stream_optimizer.OptimizeStreamedSubGraph(comp_graph, subgraph_map, run_context.GetRunContext());
- if (ret != SUCCESS) {
- GELOGE(ret, "Optimize streamed subGraph fail.");
- return ret;
- }
- GE_DUMP(comp_graph, "AfterOptimizeStreamedSubGraph");
- auto *get_var_mem_base =
- reinterpret_cast<uint8_t *>(reinterpret_cast<uintptr_t>(ge::VarManager::Instance(0)->GetVarMemLogicBase()));
- uint64_t var_size = (ge::VarManager::Instance(session_id)->GetVarMemSize(RT_MEMORY_HBM) > 0)
- ? ge::VarManager::Instance(0)->GetVarMemMaxSize()
- : 0;
- TaskGenerator task_generator(get_var_mem_base, var_size);
- ret = task_generator.GetTaskInfo(*model_ptr, comp_graph, session_id, run_context.GetRunContext());
-
- return ret;
- }
-
- Status GraphBuilder::SetInputSize(const ge::NodePtr &node_ptr) {
- // set input_desc.size = src_node.output_desc.size
- if (node_ptr->GetType() == DATA) {
- if (UpdateDataInputSize(node_ptr) != SUCCESS) {
- GELOGE(FAILED, "Update data input size failed.");
- return FAILED;
- }
- }
-
- for (const auto &in_data_anchor : node_ptr->GetAllInDataAnchors()) {
- const auto &peer_out_anchor = in_data_anchor->GetPeerOutAnchor();
- GE_IF_BOOL_EXEC(peer_out_anchor == nullptr, continue);
- const auto &src_node = peer_out_anchor->GetOwnerNode();
- const auto &src_op = src_node->GetOpDesc();
- GE_IF_BOOL_EXEC(src_op == nullptr, continue);
- auto node_op_desc = node_ptr->GetOpDesc();
- GE_IF_BOOL_EXEC(node_op_desc == nullptr, continue);
- // set dst_node.input_desc = src_node.output_desc
- ge::GeTensorDesc desc_temp(src_op->GetOutputDesc(peer_out_anchor->GetIdx()));
-
- int64_t size = 0;
- GE_IF_BOOL_EXEC(ge::TensorUtils::GetSize(desc_temp, size) != SUCCESS, GELOGI("Get size failed!"));
- GELOGD("src node %s output desc, dim_size: %zu, mem_size: %ld, format: %s, type: %s.", src_node->GetName().c_str(),
- desc_temp.GetShape().GetDimNum(), size, TypeUtils::FormatToSerialString(desc_temp.GetFormat()).c_str(),
- TypeUtils::DataTypeToSerialString(desc_temp.GetDataType()).c_str());
- for (size_t i = 0; i < desc_temp.GetShape().GetDimNum(); ++i) {
- GELOGD("dims[%zu]: %ld", i, desc_temp.GetShape().GetDim(i));
- }
-
- auto input_desc = node_op_desc->GetInputDescPtr(in_data_anchor->GetIdx());
- GE_CHECK_NOTNULL(input_desc);
- ge::TensorUtils::SetSize(const_cast<GeTensorDesc &>(*input_desc), size);
- GE_CHK_STATUS_RET(node_op_desc->UpdateInputDesc(in_data_anchor->GetIdx(), *input_desc));
- GELOGD("%s input desc, dim_size: %zu, mem_size: %u, format: %s, type: %s.", node_ptr->GetName().c_str(),
- input_desc->GetShape().GetDimNum(), size, TypeUtils::FormatToSerialString(input_desc->GetFormat()).c_str(),
- TypeUtils::DataTypeToSerialString(input_desc->GetDataType()).c_str());
- }
-
- return SUCCESS;
- }
-
- Status GraphBuilder::UpdateDataInputSize(const ge::NodePtr &node_ptr) {
- const auto &op_desc = node_ptr->GetOpDesc();
- if (op_desc == nullptr) {
- GELOGE(FAILED, "Op desc is nullptr.");
- return FAILED;
- }
- // data op only has one output anchor
- ge::GeTensorDesc output_desc = op_desc->GetOutputDesc(0);
- int64_t output_size = 0;
- if (ge::TensorUtils::GetSize(output_desc, output_size) != SUCCESS) {
- GELOGW("Get size failed!");
- }
-
- if (output_size > 0) {
- GELOGI("No need to update data input size.");
- return SUCCESS;
- } else {
- int64_t real_dim_size = 0;
- ge::graphStatus graph_status = TensorUtils::GetTensorSizeInBytes(output_desc, real_dim_size);
- if (graph_status != GRAPH_SUCCESS) {
- GELOGE(FAILED, "Get tensor size in bytes failed.");
- return FAILED;
- }
- // data op only has one input anchor
- ge::GeTensorDesc input_desc = op_desc->GetInputDesc(0);
- ge::TensorUtils::SetSize(input_desc, real_dim_size);
- if (op_desc->UpdateInputDesc(0, input_desc) != GRAPH_SUCCESS) {
- GELOGE(FAILED, "Update input desc size failed.");
- return FAILED;
- }
- }
- return SUCCESS;
- }
-
- Status GraphBuilder::CalcDynShapeRootGraphDataSize(const ge::OpDescPtr &op_desc) {
- GELOGI("Begin to calc dynamic shape graph data[%s] size.", op_desc->GetName().c_str());
- // data op only has one output anchor
- ge::GeTensorDesc output_desc = op_desc->GetOutputDesc(0);
- int64_t output_size = 0;
- if (ge::TensorUtils::GetSize(output_desc, output_size) != SUCCESS) {
- GELOGW("Get size failed!");
- }
-
- if (output_size > 0) {
- GELOGI("No need to update dynamic shape graph data output size[%ld].", output_size);
- return SUCCESS;
- } else {
- int64_t real_dim_size = 0;
- ge::graphStatus graph_status = TensorUtils::GetTensorSizeInBytes(output_desc, real_dim_size);
- if (graph_status != GRAPH_SUCCESS) {
- GELOGE(FAILED, "Get tensor size in bytes failed.");
- return FAILED;
- }
-
- ge::TensorUtils::SetSize(output_desc, real_dim_size);
- GELOGI("Update dynamic shape graph data output size to [%ld].", real_dim_size);
- if (op_desc->UpdateOutputDesc(0, output_desc) != GRAPH_SUCCESS) {
- GELOGE(FAILED, "Update dynamic shape graph data output desc size failed.");
- return FAILED;
- }
- }
- return SUCCESS;
- }
-
- Status GraphBuilder::SecondPartition(ge::ComputeGraphPtr &comp_graph, vector<ge::SubGraphInfoPtr> &subgraph_ptr_list) {
- GELOGI("[SecondPartition] second partition.");
- GE_TIMESTAMP_START(GraphPartition2);
- auto ret = graph_partitioner_.Partition(comp_graph, GraphPartitioner::kSecondPartitioning);
- if (ret != SUCCESS) {
- GELOGE(ret, "Graph partition Failed");
- return ret;
- }
- GE_CHK_STATUS_RET(ret, "Graph partition Failed.");
- auto graph_2_subgraphlist = graph_partitioner_.GetSubGraphMap();
- if (graph_2_subgraphlist.find(comp_graph) != graph_2_subgraphlist.end()) {
- subgraph_ptr_list = graph_2_subgraphlist[comp_graph];
- } else {
- GELOGE(FAILED, "Find subgraph failed.");
- return FAILED;
- }
- GE_TIMESTAMP_END(GraphPartition2, "GraphPartitioner::Partition2");
- return ret;
- }
- } // namespace ge
|