|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /**
- * 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 <bits/stdc++.h>
- #include <dirent.h>
- #include <gtest/gtest.h>
- #include <fstream>
- #include <map>
- #include <string>
-
- #define protected public
- #define private public
- #include "common/profiling/profiling_properties.h"
- #include "graph/ge_local_context.h"
- #include "graph/manager/graph_manager.h"
- #undef protected
- #undef private
-
- using namespace ge;
- using namespace std;
-
- class UtestGeProfilingProperties : public testing::Test {
- protected:
- void SetUp() override {}
-
- void TearDown() override {}
- };
-
- TEST_F(UtestGeProfilingProperties, test_load_profiling) {
- auto &profiling_properties = ge::ProfilingProperties::Instance();
- profiling_properties.SetLoadProfiling(true);
- auto is_load = profiling_properties.IsLoadProfiling();
- EXPECT_EQ(is_load, true);
- }
-
- TEST_F(UtestGeProfilingProperties, test_execute_profiling) {
- auto &profiling_properties = ge::ProfilingProperties::Instance();
- profiling_properties.SetExecuteProfiling(true);
- auto is_execute = profiling_properties.IsExecuteProfiling();
- EXPECT_EQ(is_execute, true);
- }
-
- TEST_F(UtestGeProfilingProperties, test_training_trace) {
- auto &profiling_properties = ge::ProfilingProperties::Instance();
- profiling_properties.SetTrainingTrace(true);
- auto is_train_trance = profiling_properties.ProfilingTrainingTraceOn();
- EXPECT_EQ(is_train_trance, true);
- }
-
- TEST_F(UtestGeProfilingProperties, test_fpbp_point) {
- auto &profiling_properties = ge::ProfilingProperties::Instance();
- std::string fp_point = "";
- std::string bp_point = "";
- profiling_properties.GetFpBpPoint(fp_point, bp_point);
- EXPECT_EQ(fp_point, "");
- EXPECT_EQ(bp_point, "");
- fp_point = "fp";
- bp_point = "bp";
- profiling_properties.SetFpBpPoint(fp_point, bp_point);
- profiling_properties.GetFpBpPoint(fp_point, bp_point);
- EXPECT_EQ(fp_point, "fp");
- EXPECT_EQ(bp_point, "bp");
- }
-
- TEST_F(UtestGeProfilingProperties, test_profiling_on) {
- auto &profiling_properties = ge::ProfilingProperties::Instance();
- profiling_properties.SetExecuteProfiling(true);
- profiling_properties.SetLoadProfiling(true);
- auto profiling_on = profiling_properties.ProfilingOn();
- EXPECT_EQ(profiling_on, true);
- }
-
- TEST_F(UtestGeProfilingProperties, test_clear_properties) {
- auto &profiling_properties = ge::ProfilingProperties::Instance();
- profiling_properties.SetFpBpPoint("fp", "bp");
- profiling_properties.SetLoadProfiling(true);
- profiling_properties.SetExecuteProfiling(true);
- profiling_properties.SetTrainingTrace(true);
- profiling_properties.ClearProperties();
- auto is_execute = profiling_properties.IsExecuteProfiling();
- auto is_load = profiling_properties.IsLoadProfiling();
- auto is_train_trance = profiling_properties.ProfilingTrainingTraceOn();
- EXPECT_EQ(is_execute, false);
- EXPECT_EQ(is_load, false);
- EXPECT_EQ(is_train_trance, false);
- std::string fp_point;
- std::string bp_point;
- profiling_properties.GetFpBpPoint(fp_point, bp_point);
- EXPECT_EQ(fp_point, "");
- EXPECT_EQ(bp_point, "");
- }
|