|
- /**
- * Copyright 2021 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 <gmock/gmock.h>
-
- #define protected public
- #define private public
- #include "common/ge_opt_info.h"
- #include "graph/ge_local_context.h"
- #include "external/ge/ge_api_types.h"
- #undef private
- #undef protected
-
- namespace ge {
- class UTEST_opt_info : public testing::Test {
- protected:
- void SetUp() {}
- void TearDown() {}
- };
-
- TEST_F(UTEST_opt_info, get_opt_info_success) {
- std::map<std::string, std::string> options = {{ge::SOC_VERSION, "Ascend910"}};
- GetThreadLocalContext().SetGlobalOption(options);
- auto ret = GeOptInfo::SetOptInfo();
- EXPECT_EQ(ret, ge::SUCCESS);
- std::map<std::string, std::string> graph_options = GetThreadLocalContext().GetAllGraphOptions();
- auto itr = graph_options.find("opt_module.fe");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- itr = graph_options.find("opt_module.pass");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- itr = graph_options.find("opt_module.op_tune");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- }
-
- TEST_F(UTEST_opt_info, get_opt_info_all) {
- std::map<std::string, std::string> global_options = {{ge::SOC_VERSION, "Ascend310"}};
- GetThreadLocalContext().SetGlobalOption(global_options);
- auto ret = GeOptInfo::SetOptInfo();
- EXPECT_EQ(ret, ge::SUCCESS);
- std::map<std::string, std::string> graph_options = GetThreadLocalContext().GetAllGraphOptions();
- auto itr = graph_options.find("opt_module.fe");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- itr = graph_options.find("opt_module.pass");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- itr = graph_options.find("opt_module.op_tune");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- itr = graph_options.find("opt_module.rl_tune");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- itr = graph_options.find("opt_module.aoe");
- EXPECT_NE(itr, graph_options.end());
- EXPECT_EQ(itr->second, "all");
- }
-
- TEST_F(UTEST_opt_info, get_opt_info_failed) {
- std::map<std::string, std::string> options;
- GetThreadLocalContext().SetGlobalOption(options);
- auto ret = GeOptInfo::SetOptInfo();
- EXPECT_EQ(ret, ge::FAILED);
- }
-
- } // namespace ge
|