main.cc 1.7 KB
Newer Older
X
xiexionghang 已提交
1 2 3 4 5 6 7
#include <time.h>
#include <fstream>
#include <yaml-cpp/yaml.h>
#include "paddle/fluid/platform/init.h"
#include "paddle/fluid/train/custom_trainer/feed/trainer_context.h"
#include "paddle/fluid/train/custom_trainer/feed/process/process.h"
#include "paddle/fluid/train/custom_trainer/feed/process/init_env_process.h"
R
rensilin 已提交
8
#include "paddle/fluid/framework/op_registry.h"
R
rensilin 已提交
9
#include "paddle/fluid/pybind/pybind.h"
X
xiexionghang 已提交
10 11 12 13 14 15

using namespace paddle::custom_trainer::feed;

DEFINE_string(feed_trainer_conf_path, "./conf/trainer.yaml", "path of trainer conf");

int main(int argc, char* argv[]) {
R
rensilin 已提交
16
    google::InitGoogleLogging(argv[0]);
X
xiexionghang 已提交
17 18 19 20 21 22 23 24 25 26
    //gflags
    google::ParseCommandLineFlags(&argc, &argv, true);
    std::string gflag_conf = "./conf/gflags.conf";
    google::SetCommandLineOption("flagfile", gflag_conf.c_str()); 

    //load trainer config
    auto trainer_context_ptr = std::make_shared<TrainerContext>();
    trainer_context_ptr->trainer_config = YAML::LoadFile(FLAGS_feed_trainer_conf_path);    
 
    std::vector<std::string> process_name_list = {
X
xiexionghang 已提交
27 28
        "InitEnvProcess",
        "LearnerProcess"
X
xiexionghang 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    };

    for (const auto& process_name : process_name_list) {
        Process* process = CREATE_CLASS(Process, process_name);
        if (process == NULL) {
            VLOG(1) << "Process:" << process_name << " does not exist"; 
            return -1;
        }
        if (process->initialize(trainer_context_ptr) != 0) {
            VLOG(1) << "Process:" << process_name << " initialize failed"; 
            return -1;
        }
        trainer_context_ptr->process_list.push_back(std::shared_ptr<Process>(process));
    } 

    for (auto& process : trainer_context_ptr->process_list) {
        process->run();
    }

    return 0;
}