paddle_gtest_main.cc 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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 "gflags/gflags.h"
#include "gtest/gtest.h"
17
#include "paddle/fluid/framework/phi_utils.h"
Y
Refine  
Yu Yang 已提交
18
#include "paddle/fluid/memory/allocation/allocator_strategy.h"
19
#include "paddle/fluid/platform/device/npu/npu_info.h"
20
#include "paddle/fluid/platform/init.h"
21
#include "paddle/phi/core/flags.h"
22

23 24 25 26
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
DECLARE_bool(enable_gpu_memory_usage_log);
#endif

27
int main(int argc, char** argv) {
Y
Refine  
Yu Yang 已提交
28
  paddle::memory::allocation::UseAllocatorStrategyGFlag();
Y
Yu Yang 已提交
29
  testing::InitGoogleTest(&argc, argv);
30
  std::vector<char*> new_argv;
31
  for (int i = 0; i < argc; ++i) {
32
    new_argv.push_back(argv[i]);
33
  }
34 35

  std::vector<std::string> envs;
36
  std::vector<std::string> undefok;
37
#if defined(PADDLE_WITH_DISTRIBUTE) && !defined(PADDLE_WITH_PSLIB)
G
gongweibao 已提交
38
  std::string str_max_body_size;
39 40
  if (::GFLAGS_NAMESPACE::GetCommandLineOption("max_body_size",
                                               &str_max_body_size)) {
G
gongweibao 已提交
41 42 43
    setenv("FLAGS_max_body_size", "2147483647", 1);
    envs.push_back("max_body_size");
  }
44 45
#endif

46
  const auto& flag_map = phi::GetExportedFlagInfoMap();
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
  for (const auto& pair : flag_map) {
    const std::string& name = pair.second.name;
    // NOTE(zhiqiu): some names may not linked in some tests, so add to
    // `undefok`.
    // One way to handle that is to check each flag item by item, and put it in
    // `envs` or `undefok`;
    // another way is to add all flags to `envs` and `undeok`, basically it is
    // not a good design,
    // but it can simplify the procedure of creating new flag and seems no side
    // effects.
    // see details: https://gflags.github.io/gflags/#special
    if (pair.second.is_writable) {  // means public
      envs.push_back(name);
      undefok.push_back(name);
    }
  }
63

64
  char* env_str = nullptr;
65 66 67 68 69 70
  if (envs.size() > 0) {
    std::string env_string = "--tryfromenv=";
    for (auto t : envs) {
      env_string += t + ",";
    }
    env_string = env_string.substr(0, env_string.length() - 1);
71
    env_str = strdup(env_string.c_str());
72
    new_argv.push_back(env_str);
73 74 75
    VLOG(1) << "gtest env_string:" << env_string;
  }

76 77 78 79 80 81 82 83 84 85 86 87
  char* undefok_str = nullptr;
  if (undefok.size() > 0) {
    std::string undefok_string = "--undefok=";
    for (auto t : undefok) {
      undefok_string += t + ",";
    }
    undefok_string = undefok_string.substr(0, undefok_string.length() - 1);
    undefok_str = strdup(undefok_string.c_str());
    new_argv.push_back(undefok_str);
    VLOG(1) << "gtest undefok_string:" << undefok_string;
  }

88 89 90 91 92 93 94
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
  if (strstr(undefok_str, "enable_gpu_memory_usage_log")) {
    VLOG(1) << "Set FLAGS_enable_gpu_memory_usage_log to true";
    FLAGS_enable_gpu_memory_usage_log = true;
  }
#endif

95 96 97 98
  int new_argc = static_cast<int>(new_argv.size());
  char** new_argv_address = new_argv.data();
  ::GFLAGS_NAMESPACE::ParseCommandLineFlags(
      &new_argc, &new_argv_address, false);
99
  paddle::framework::InitDevices();
100
  paddle::framework::InitDefaultKernelSignatureMap();
101 102 103

  int ret = RUN_ALL_TESTS();

104 105 106
#ifdef PADDLE_WITH_ASCEND_CL
  paddle::platform::AclInstance::Instance().Finalize();
#endif
107
  if (env_str) free(env_str);
108
  if (undefok_str) free(undefok_str);
109
  return ret;
110
}