paddle_gtest_main.cc 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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 <cstring>
D
dzhwinter 已提交
16

17 18
#include "gflags/gflags.h"
#include "gtest/gtest.h"
Y
Refine  
Yu Yang 已提交
19
#include "paddle/fluid/memory/allocation/allocator_strategy.h"
Y
Yi Wang 已提交
20
#include "paddle/fluid/memory/memory.h"
21
#include "paddle/fluid/platform/init.h"
22 23

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

  std::vector<std::string> envs;
  std::vector<std::string> undefok;
#if defined(PADDLE_WITH_DISTRIBUTE) && !defined(PADDLE_WITH_GRPC)
  envs.push_back("max_body_size");
#endif

S
sabreshao 已提交
38
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
39 40
  envs.push_back("fraction_of_gpu_memory_to_use");
  envs.push_back("allocator_strategy");
J
JiabinYang 已提交
41
#elif __clang__
42 43 44 45 46 47
  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");
48
#else
49 50 51 52 53 54 55
  envs.push_back("use_pinned_memory");
  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
#endif
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 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);
    new_argv.push_back(strdup(env_string.c_str()));
    VLOG(1) << "gtest env_string:" << env_string;
  }

  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);
    new_argv.push_back(strdup(undefok_string.c_str()));
    VLOG(1) << "gtest undefok_string:" << undefok_string;
  }

78 79 80
  int new_argc = static_cast<int>(new_argv.size());
  char** new_argv_address = new_argv.data();
  google::ParseCommandLineFlags(&new_argc, &new_argv_address, false);
X
Xin Pan 已提交
81
  paddle::framework::InitDevices(true);
82 83
  return RUN_ALL_TESTS();
}