ConfigParser.cpp 3.4 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2016 Baidu, Inc. 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 "PaddleAPI.h"
E
emailweixu 已提交
16
#include "PaddleAPIPrivate.h"
Z
zhangjinchao01 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#include "paddle/trainer/Trainer.h"

struct ParameterConfigPrivate {
  paddle::ParameterPtr parameter;
  paddle::ParameterConfig config;

  inline paddle::ParameterConfig* getConfigPtr() {
    if (parameter != nullptr) {
      auto& conf = parameter->getConfig();
      return const_cast<paddle::ParameterConfig*>(&conf);
    } else {
      return &config;
    }
  }
};

TrainerConfig::TrainerConfig() : m(new TrainerConfigPrivate()) {}

TrainerConfig::~TrainerConfig() { delete m; }

TrainerConfig* TrainerConfig::createFromTrainerConfigFile(
    const std::string& confPath) {
  LOG(INFO) << "load trainer config from " << confPath;
E
emailweixu 已提交
40
  auto conf = std::make_shared<paddle::TrainerConfigHelper>(confPath);
Z
zhangjinchao01 已提交
41
  auto retv = new TrainerConfig();
E
emailweixu 已提交
42 43 44 45
  retv->m->conf = conf;
  return retv;
}

46
TrainerConfig* TrainerConfig::createFromProtoString(const std::string& str) {
E
emailweixu 已提交
47 48 49 50 51
  auto retv = new TrainerConfig();
  paddle::TrainerConfig trainerConfigProto;
  auto conf = std::make_shared<paddle::TrainerConfigHelper>(trainerConfigProto);
  CHECK(conf->getMutableConfig().ParseFromString(str));
  retv->m->conf = conf;
Z
zhangjinchao01 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
  return retv;
}

ModelConfig::ModelConfig() : m(new ModelConfigPrivate()) {}

ModelConfig::~ModelConfig() { delete m; }

ModelConfig* TrainerConfig::getModelConfig() const {
  auto retv = new ModelConfig();
  retv->m->conf = m->conf;
  return retv;
}

ParameterConfig::ParameterConfig() : m(new ParameterConfigPrivate()) {}

ParameterConfig::~ParameterConfig() {
  if (m) {
    delete m;
  }
}

ParameterConfig* ParameterConfig::createParameterConfigFromParameterSharedPtr(
    void* ptr) {
  auto& p = *(paddle::ParameterPtr*)(ptr);
  if (p != nullptr) {
    auto conf = new ParameterConfig();
    conf->m->parameter = p;
    return conf;
  } else {
    return nullptr;
  }
}

ParameterConfig* ParameterConfig::createParameterConfigFromParameterPtr(
    void* ptr) {
  auto& p = *(paddle::Parameter*)(ptr);
  auto conf = new ParameterConfig();
  conf->m->config = p.getConfig();
  return conf;
}

std::string ParameterConfig::toProtoString() const {
  return m->getConfigPtr()->SerializeAsString();
}

void* ParameterConfig::getRawPtr() { return m->getConfigPtr(); }

OptimizationConfig::OptimizationConfig() : m(new OptimizationConfigPrivate()) {}

OptimizationConfig::~OptimizationConfig() {
  if (m) {
    delete m;
  }
}

std::string OptimizationConfig::toProtoString() {
  return m->getConfig().SerializeAsString();
}

OptimizationConfig* TrainerConfig::getOptimizationConfig() const {
  auto opt_config = new OptimizationConfig();
  opt_config->m->trainer_config = m->conf;
  return opt_config;
}

OptimizationConfig* OptimizationConfig::createFromProtoString(
    const std::string& str) {
  auto conf = new OptimizationConfig();
  conf->m->config.ParseFromString(str);
  return conf;
}