paddle_gtest_main.cc 3.5 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"
Y
Refine  
Yu Yang 已提交
17
#include "paddle/fluid/memory/allocation/allocator_strategy.h"
18
#include "paddle/fluid/platform/init.h"
19
#include "paddle/fluid/platform/npu_info.h"
20 21

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

  std::vector<std::string> envs;
  std::vector<std::string> undefok;
T
tangwei12 已提交
32 33
#if defined(PADDLE_WITH_DISTRIBUTE) && !defined(PADDLE_WITH_GRPC) && \
    !defined(PADDLE_WITH_PSLIB)
G
gongweibao 已提交
34
  std::string str_max_body_size;
35 36
  if (::GFLAGS_NAMESPACE::GetCommandLineOption("max_body_size",
                                               &str_max_body_size)) {
G
gongweibao 已提交
37 38 39
    setenv("FLAGS_max_body_size", "2147483647", 1);
    envs.push_back("max_body_size");
  }
40 41
#endif

42 43
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) || \
    defined(PADDLE_WITH_ASCEND_CL)
44
  envs.push_back("fraction_of_gpu_memory_to_use");
45 46
  envs.push_back("initial_gpu_memory_in_mb");
  envs.push_back("reallocate_gpu_memory_in_mb");
47
  envs.push_back("allocator_strategy");
48
  envs.push_back("selected_gpus");
J
JiabinYang 已提交
49
#elif __clang__
50 51 52 53 54 55
  envs.push_back("use_mkldnn");
  envs.push_back("initial_cpu_memory_in_mb");
  envs.push_back("allocator_strategy");

  undefok.push_back("use_mkldnn");
  undefok.push_back("initial_cpu_memory_in_mb");
56
#else
57 58 59 60 61
  envs.push_back("use_pinned_memory");
  envs.push_back("use_mkldnn");
  envs.push_back("initial_cpu_memory_in_mb");
  envs.push_back("allocator_strategy");

62
  undefok.push_back("use_pinned_memory");
63 64
  undefok.push_back("use_mkldnn");
  undefok.push_back("initial_cpu_memory_in_mb");
65
#endif
66

67 68 69 70
#if defined(PADDLE_WITH_ASCEND_CL)
  envs.push_back("selected_npus");
#endif

71
  char* env_str = nullptr;
72 73 74 75 76 77
  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);
78
    env_str = strdup(env_string.c_str());
79
    new_argv.push_back(env_str);
80 81 82
    VLOG(1) << "gtest env_string:" << env_string;
  }

83
  char* undefok_str = nullptr;
84 85 86 87 88 89
  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);
90
    undefok_str = strdup(undefok_string.c_str());
91
    new_argv.push_back(undefok_str);
92 93 94
    VLOG(1) << "gtest undefok_string:" << undefok_string;
  }

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 101 102

  int ret = RUN_ALL_TESTS();

103 104 105 106
#ifdef PADDLE_WITH_ASCEND_CL
  paddle::platform::AclInstance::Instance().Finalize();
#endif

107 108 109 110
  if (env_str) free(env_str);
  if (undefok_str) free(undefok_str);

  return ret;
111
}