paddle_gtest_main.cc 1.5 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
Yi Wang 已提交
19
#include "paddle/fluid/memory/memory.h"
20
#include "paddle/fluid/platform/init.h"
21 22

int main(int argc, char** argv) {
Y
Yu Yang 已提交
23
  testing::InitGoogleTest(&argc, argv);
24 25
  std::vector<char*> new_argv;
  std::string gflags_env;
26 27 28
  for (int i = 0; i < argc; ++i) {
    new_argv.push_back(argv[i]);
  }
29
#ifdef PADDLE_WITH_CUDA
Y
Yu Yang 已提交
30 31
  new_argv.push_back(
      strdup("--tryfromenv=fraction_of_gpu_memory_to_use,allocator_strategy"));
32
#else
Y
Yu Yang 已提交
33 34 35
  new_argv.push_back(
      strdup("--tryfromenv=use_pinned_memory,use_mkldnn,initial_cpu_memory_in_"
             "mb,allocator_strategy"));
36
  new_argv.push_back(strdup("--undefok=use_mkldnn,initial_cpu_memory_in_mb"));
37 38 39 40
#endif
  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 已提交
41
  paddle::framework::InitDevices(true);
42 43
  return RUN_ALL_TESTS();
}