main.cc 383 字节
Newer Older
R
execute  
rensilin 已提交
1 2 3
#include <gtest/gtest.h>
#include <gflags/gflags.h>
#include <glog/logging.h>
R
rensilin 已提交
4
#include "paddle/fluid/framework/op_registry.h"
R
rensilin 已提交
5
#include "paddle/fluid/pybind/pybind.h"
R
execute  
rensilin 已提交
6 7

int32_t main(int32_t argc, char** argv) {
R
rensilin 已提交
8
    ::google::InitGoogleLogging(argv[0]);
R
execute  
rensilin 已提交
9 10
    ::testing::InitGoogleTest(&argc, argv);
    ::google::ParseCommandLineFlags(&argc, &argv, true);
R
rensilin 已提交
11

R
execute  
rensilin 已提交
12 13
    return RUN_ALL_TESTS();
}