Browse Source

Feature: Get default from ge ir graph while no user input shape

tags/v1.2.0
l00444296 4 years ago
parent
commit
a2da82c86f
1 changed files with 12 additions and 6 deletions
  1. +12
    -6
      ge/ir_build/ge_ir_build.cc

+ 12
- 6
ge/ir_build/ge_ir_build.cc View File

@@ -36,6 +36,7 @@
#include "model/ge_model.h"
#include "graph/shape_refiner.h"
#include "graph/opsproto_manager.h"
#include "graph/utils/type_utils.h"

using std::string;
using namespace std;
@@ -225,7 +226,7 @@ class Impl {
~Impl() { (void)generator_.Finalize(); };
graphStatus CheckOptions(const std::map<std::string, std::string> &options);
graphStatus CreateInputsForIRBuild(const ge::Graph &graph, vector<ge::GeTensor> &inputs);
graphStatus GetDefaultInputShape(const Graph &graph, string &default_shape);
graphStatus GetDefaultInputShapeAndFormat(const Graph &graph, string &default_shape, string &input_format);
graphStatus Init(const Graph &graph, const std::map<std::string, std::string> &options);
graphStatus BuildModel(const Graph &graph, const std::map<std::string, std::string> &options,
ModelBufferData &ge_models);
@@ -279,7 +280,7 @@ graphStatus Impl::CheckOptions(const std::map<std::string, std::string> &options
return GRAPH_SUCCESS;
}

graphStatus Impl::GetDefaultInputShape(const Graph &graph, string &default_shape) {
graphStatus Impl::GetDefaultInputShapeAndFormat(const Graph &graph, string &default_shape, string &input_format) {
auto compute_graph = ge::GraphUtils::GetComputeGraph(graph);
GE_CHECK_NOTNULL(compute_graph);
for (ge::NodePtr &input_node : compute_graph->GetDirectNode()) {
@@ -307,7 +308,11 @@ graphStatus Impl::GetDefaultInputShape(const Graph &graph, string &default_shape
tmp_shape_str = tmp_shape_str.substr(0, tmp_shape_str.size() - 1);
tmp_shape_str += ";";
default_shape += tmp_shape_str;
GELOGD("Data op name: %s, data shape: %s", data_op_name.c_str(), tmp_shape_str.c_str());

ge::Format data_format = tensor.GetFormat();
input_format.assign(ge::TypeUtils::FormatToSerialString(data_format));
GELOGD("Data op name: %s, data shape: %s, data format: %s.", data_op_name.c_str(), tmp_shape_str.c_str(),
input_format.c_str());
}
}
default_shape = (default_shape.empty() ? default_shape : default_shape.substr(0, default_shape.size() - 1));
@@ -334,13 +339,14 @@ graphStatus Impl::Init(const Graph &graph, const std::map<std::string, std::stri
options_[ge::ir_option::LOG_LEVEL] = log;

string input_shape;
string tmp_input_format;
if (options_.find("input_shape") == options_.end()) {
GE_CHK_BOOL_EXEC(GetDefaultInputShape(graph, input_shape) == ge::SUCCESS, return ge::GRAPH_PARAM_INVALID,
"Get defaule data op shape from graph failed!");
GE_CHK_BOOL_EXEC(GetDefaultInputShapeAndFormat(graph, input_shape, tmp_input_format) == ge::SUCCESS,
return ge::GRAPH_PARAM_INVALID, "Get defaule data op shape from graph failed!");
} else {
input_shape = options_["input_shape"];
}
string input_format = options_.find("input_format") == options_.end() ? "" : options_["input_format"];
string input_format = options_.find("input_format") == options_.end() ? tmp_input_format : options_["input_format"];
string net_format = options_.find("net_format") == options_.end() ? "" : options_["net_format"];
string dynamic_batch_size = options_.find(ge::ir_option::DYNAMIC_BATCH_SIZE) == options_.end()
? ""


Loading…
Cancel
Save