parent
605b3e4499
commit
1238706d72
@ -0,0 +1,39 @@
|
||||
/* 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>
|
||||
#include "gflags/gflags.h"
|
||||
#include "gtest/gtest.h"
|
||||
#include "paddle/memory/memory.h"
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
std::vector<char*> new_argv;
|
||||
std::string gflags_env;
|
||||
new_argv.push_back(argv[0]);
|
||||
#ifdef PADDLE_WITH_CUDA
|
||||
new_argv.push_back(
|
||||
strdup("--tryfromenv=fraction_of_gpu_memory_to_use,use_pinned_memory"));
|
||||
#else
|
||||
new_argv.push_back(strdup("--tryfromenv=use_pinned_memory"));
|
||||
#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);
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
paddle::memory::Used(paddle::platform::CPUPlace());
|
||||
#ifdef PADDLE_WITH_CUDA
|
||||
paddle::memory::Used(paddle::platform::GPUPlace(0));
|
||||
#endif
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
Loading…
Reference in new issue