main.cc 301 字节
Newer Older
R
execute  
rensilin 已提交
1 2 3 4 5 6 7 8 9 10
#include <gtest/gtest.h>
#include <gflags/gflags.h>
#include <glog/logging.h>

int32_t main(int32_t argc, char** argv) {
    ::testing::InitGoogleTest(&argc, argv);
    ::google::ParseCommandLineFlags(&argc, &argv, true);
    google::InitGoogleLogging("paddle_trainer");
    return RUN_ALL_TESTS();
}