GradientMachine.cpp 4.0 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. 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. */

Y
Yu Yang 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#include "PaddleCAPI.h"
#include "PaddleCAPIPrivate.h"
#include "paddle/gserver/gradientmachines/NeuralNetwork.h"

#define cast(v) paddle::capi::cast<paddle::capi::CGradientMachine>(v)

enum GradientMatchineCreateMode {
  CREATE_MODE_NORMAL = 0,
  CREATE_MODE_TESTING = 4
};

namespace paddle {

class MyNeuralNetwork : public NeuralNetwork {
public:
  MyNeuralNetwork(const std::string& name, NeuralNetwork* network)
      : NeuralNetwork(name, network) {}
};

NeuralNetwork* newCustomNerualNetwork(const std::string& name,
                                      NeuralNetwork* network) {
  return new MyNeuralNetwork(name, network);
}
Y
Yu Yang 已提交
38
}  // namespace paddle
Y
Yu Yang 已提交
39 40

extern "C" {
Y
Yu Yang 已提交
41 42 43
PD_Error PDGradientMachineCreateForPredict(PD_GradientMachine* machine,
                                           void* modelConfigProtobuf,
                                           int size) {
Y
Yu Yang 已提交
44
  if (modelConfigProtobuf == nullptr) return kPD_NULLPTR;
Y
Yu Yang 已提交
45 46 47
  paddle::ModelConfig config;
  if (!config.ParseFromArray(modelConfigProtobuf, size) ||
      !config.IsInitialized()) {
Y
Yu Yang 已提交
48
    return kPD_PROTOBUF_ERROR;
Y
Yu Yang 已提交
49 50 51 52 53 54
  }

  auto ptr = new paddle::capi::CGradientMachine();
  ptr->machine.reset(paddle::GradientMachine::create(
      config, CREATE_MODE_TESTING, {paddle::PARAMETER_VALUE}));
  *machine = ptr;
Y
Yu Yang 已提交
55
  return kPD_NO_ERROR;
Y
Yu Yang 已提交
56 57
}

Y
Yu Yang 已提交
58
PD_Error PDGradientMachineDestroy(PD_GradientMachine machine) {
Y
Yu Yang 已提交
59
  delete cast(machine);
Y
Yu Yang 已提交
60 61 62
  return kPD_NO_ERROR;
}

Y
Yu Yang 已提交
63 64
PD_Error PDGradientMachineLoadParameterFromDisk(PD_GradientMachine machine,
                                                const char* path) {
Y
Yu Yang 已提交
65 66 67 68 69 70 71
  auto m = cast(machine);
  if (m == nullptr || path == nullptr || m->machine == nullptr)
    return kPD_NULLPTR;
  m->machine->loadParameters(path);
  return kPD_NO_ERROR;
}

Y
Yu Yang 已提交
72 73 74 75
PD_Error PDGradientMachineForward(PD_GradientMachine machine,
                                  PD_Arguments inArgs,
                                  PD_Arguments outArgs,
                                  bool isTrain) {
Y
Yu Yang 已提交
76 77 78 79 80 81 82 83 84 85
  auto m = cast(machine);
  auto in = paddle::capi::cast<paddle::capi::CArguments>(inArgs);
  auto out = paddle::capi::cast<paddle::capi::CArguments>(outArgs);
  if (m == nullptr || in == nullptr || out == nullptr || m->machine == nullptr)
    return kPD_NULLPTR;
  m->machine->forward(
      in->args, &out->args, isTrain ? paddle::PASS_TRAIN : paddle::PASS_TEST);
  return kPD_NO_ERROR;
}

Y
Yu Yang 已提交
86 87 88 89
PD_Error PDGradientMachineCreateSharedParam(PD_GradientMachine origin,
                                            void* modelConfigProtobuf,
                                            int size,
                                            PD_GradientMachine* slave) {
Y
Yu Yang 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
  auto o = cast(origin);
  if (origin == nullptr || slave == nullptr || o->machine == nullptr) {
    return kPD_NULLPTR;
  }
  paddle::ModelConfig config;
  if (!config.ParseFromArray(modelConfigProtobuf, size) ||
      !config.IsInitialized()) {
    return kPD_PROTOBUF_ERROR;
  }

  std::unique_ptr<paddle::capi::CGradientMachine> ptr(
      new paddle::capi::CGradientMachine());
  auto nn = paddle::NeuralNetwork::create(config);
  nn->init(config,
           [&o](int paramId, paddle::Parameter* param) {
             auto p = o->machine->getParameters()[paramId];
             param->enableSharedType(paddle::PARAMETER_VALUE,
                                     p->getBuf(paddle::PARAMETER_VALUE));
           },
           {paddle::PARAMETER_VALUE},
           false);
  ptr->machine.reset(nn);
  *slave = ptr.release();
  return kPD_NO_ERROR;
Y
Yu Yang 已提交
114 115
}
}