PaddleAPIPrivate.h 2.5 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
E
emailweixu 已提交
2 3 4 5 6 7 8 9 10 11 12 13

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. */
Y
Yu Yang 已提交
14 15 16
#pragma once
#include <memory>
#include "PaddleAPI.h"
Y
Yu Yang 已提交
17
#include "paddle/gserver/evaluators/Evaluator.h"
E
emailweixu 已提交
18
#include "paddle/gserver/gradientmachines/GradientMachine.h"
Y
Yu Yang 已提交
19
#include "paddle/parameter/ParameterUpdaterBase.h"
Y
Yu Yang 已提交
20
#include "paddle/trainer/TrainerConfigHelper.h"
E
emailweixu 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

struct GradientMachinePrivate {
  std::shared_ptr<paddle::GradientMachine> machine;

  template <typename T>
  inline T& cast(void* ptr) {
    return *(T*)(ptr);
  }
};

struct OptimizationConfigPrivate {
  std::shared_ptr<paddle::TrainerConfigHelper> trainer_config;
  paddle::OptimizationConfig config;

  const paddle::OptimizationConfig& getConfig() {
    if (trainer_config != nullptr) {
      return trainer_config->getOptConfig();
    } else {
      return config;
    }
  }
};

struct TrainerConfigPrivate {
  std::shared_ptr<paddle::TrainerConfigHelper> conf;
  TrainerConfigPrivate() {}
};

struct ModelConfigPrivate {
  std::shared_ptr<paddle::TrainerConfigHelper> conf;
};

struct ArgumentsPrivate {
  std::vector<paddle::Argument> outputs;

  inline paddle::Argument& getArg(size_t idx) throw(RangeError) {
    if (idx < outputs.size()) {
      return outputs[idx];
    } else {
      RangeError e;
      throw e;
    }
  }

  template <typename T>
  std::shared_ptr<T>& cast(void* rawPtr) const {
    return *(std::shared_ptr<T>*)(rawPtr);
  }
};
Y
Yu Yang 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

struct ParameterUpdaterPrivate {
  std::unique_ptr<paddle::ParameterUpdater> updater;
};

struct ParameterPrivate {
  std::shared_ptr<paddle::Parameter> sharedPtr;
  paddle::Parameter* rawPtr;  // rawPtr only used in ParameterUpdater,
                              // in other situation sharedPtr should
                              // contains value.

  ParameterPrivate() : sharedPtr(nullptr), rawPtr(nullptr) {}

  paddle::Parameter* getPtr() {
    if (sharedPtr) {
      return sharedPtr.get();
    } else {
      return rawPtr;
    }
  }
};
Y
Yu Yang 已提交
91 92 93 94 95 96 97

struct EvaluatorPrivate {
  paddle::Evaluator* rawPtr;

  EvaluatorPrivate() : rawPtr(nullptr) {}
  ~EvaluatorPrivate() { delete rawPtr; }
};