|
- /**
- * 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 <gtest/gtest.h>
- #include "parser/common/op_parser_factory.h"
- #include "parser/tensorflow/tensorflow_parser.h"
- #include "graph/operator_reg.h"
- #include "register/op_registry.h"
- #include "parser/common/register_tbe.h"
- #include "external/parser/tensorflow_parser.h"
- #include "st/parser_st_utils.h"
- #include "tests/depends/ops_stub/ops_stub.h"
-
- namespace ge {
- class STestTensorflowParser : public testing::Test {
- protected:
- void SetUp() {
- ParerSTestsUtils::ClearParserInnerCtx();
- }
-
- void TearDown() {}
-
- public:
- void RegisterCustomOp();
- };
-
- static Status ParseParams(const google::protobuf::Message* op_src, ge::Operator& op_dest) {
- return SUCCESS;
- }
-
- void STestTensorflowParser::RegisterCustomOp() {
- REGISTER_CUSTOM_OP("Add")
- .FrameworkType(domi::TENSORFLOW)
- .OriginOpType("Add")
- .ParseParamsFn(ParseParams);
-
- std::vector<OpRegistrationData> reg_datas = domi::OpRegistry::Instance()->registrationDatas;
- for (auto reg_data : reg_datas) {
- OpRegistrationTbe::Instance()->Finalize(reg_data);
- domi::OpRegistry::Instance()->Register(reg_data);
- }
- domi::OpRegistry::Instance()->registrationDatas.clear();
- }
-
- TEST_F(STestTensorflowParser, tensorflow_parser_success) {
- RegisterCustomOp();
-
- std::string case_dir = __FILE__;
- ParserOperator unused("Add");
- case_dir = case_dir.substr(0, case_dir.find_last_of("/"));
- std::string model_file = case_dir + "/origin_models/tf_add.pb";
- std::map<ge::AscendString, ge::AscendString> parser_params;
- ge::Graph graph;
- auto ret = ge::aclgrphParseTensorFlow(model_file.c_str(), parser_params, graph);
- ASSERT_EQ(ret, SUCCESS);
- ge::ComputeGraphPtr compute_graph = ge::GraphUtils::GetComputeGraph(graph);
- auto output_nodes_info = compute_graph->GetGraphOutNodesInfo();
- ASSERT_EQ(output_nodes_info.size(), 1);
- EXPECT_EQ((output_nodes_info.at(0).first->GetName()), "add_test_1");
- EXPECT_EQ((output_nodes_info.at(0).second), 0);
- auto &net_out_name = ge::GetParserContext().net_out_nodes;
- ASSERT_EQ(net_out_name.size(), 1);
- EXPECT_EQ(net_out_name.at(0), "add_test_1:0");
- }
- } // namespace ge
|