protobuf.cc 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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. */

#include "paddle/pybind/protobuf.h"
Y
Yu Yang 已提交
16
#include <deque>
17 18

namespace paddle {
19
namespace pybind {
20

Y
Yu Yang 已提交
21 22
using namespace paddle::framework;  // NOLINT

Y
Yu Yang 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
template <typename T>
inline std::vector<T> RepeatedToVector(
    const google::protobuf::RepeatedField<T> &repeated_field) {
  std::vector<T> ret;
  ret.reserve(repeated_field.size());
  std::copy(
      repeated_field.begin(), repeated_field.end(), std::back_inserter(ret));
  return ret;
}

template <typename T, typename RepeatedField>
inline void VectorToRepeated(const std::vector<T> &vec,
                             RepeatedField *repeated_field) {
  repeated_field->Reserve(vec.size());
  for (auto &elem : vec) {
    *repeated_field->Add() = elem;
  }
}

Y
Yu Yang 已提交
42 43 44
class ProgramDescBind;
class OpDescBind;
class BlockDescBind;
Y
Fix bug  
Yu Yang 已提交
45
class VarDescBind;
Y
Yu Yang 已提交
46

Y
Fix bug  
Yu Yang 已提交
47
class VarDescBind {
Y
Yu Yang 已提交
48
public:
Y
Fix bug  
Yu Yang 已提交
49 50 51 52 53 54 55
  explicit VarDescBind(const std::string &name) { var_desc_.set_name(name); }

  VarDesc *Proto() { return &var_desc_; }

private:
  VarDesc var_desc_;
};
Y
Yu Yang 已提交
56

Y
Fix bug  
Yu Yang 已提交
57 58 59
class OpDescBind {
public:
  OpDesc *Proto() { return &op_desc_; }
Y
Yu Yang 已提交
60 61 62 63 64 65 66 67 68 69

private:
  OpDesc op_desc_;
};

class BlockDescBind {
public:
  BlockDescBind(ProgramDescBind *prog, BlockDesc *desc)
      : prog_(prog), desc_(desc), need_update_(false) {}

Y
Fix bug  
Yu Yang 已提交
70 71 72
  BlockDescBind(const BlockDescBind &o) = delete;
  BlockDescBind &operator=(const BlockDescBind &o) = delete;

Y
Yu Yang 已提交
73
  int32_t id() const { return desc_->idx(); }
Y
Yu Yang 已提交
74 75 76

  int32_t Parent() const { return desc_->parent_idx(); }

Y
Fix bug  
Yu Yang 已提交
77 78 79 80 81 82 83 84 85 86 87
  VarDescBind *NewVar(const std::string &name) {
    need_update_ = true;
    auto it = vars_.find(name);
    PADDLE_ENFORCE(it == vars_.end(), "Duplicated variable %s", name);
    auto var = new VarDescBind(name);
    vars_[name].reset(var);
    return var;
  }

  BlockDescBind *ParentBlock() const;

Y
Yu Yang 已提交
88 89
  OpDescBind *AppendOp() {
    need_update_ = true;
Y
Fix bug  
Yu Yang 已提交
90 91
    ops_.emplace_back(new OpDescBind());
    return ops_.back().get();
Y
Yu Yang 已提交
92 93 94 95 96 97 98 99
  }

  void Sync() {
    if (need_update_) {
      auto &op_field = *this->desc_->mutable_ops();
      op_field.Clear();
      op_field.Reserve(static_cast<int>(ops_.size()));
      for (auto &op_desc : ops_) {
Y
Fix bug  
Yu Yang 已提交
100
        op_field.AddAllocated(op_desc->Proto());
Y
Yu Yang 已提交
101
      }
Y
Fix bug  
Yu Yang 已提交
102
      need_update_ = false;
Y
Yu Yang 已提交
103 104 105 106 107 108 109 110
    }
  }

private:
  ProgramDescBind *prog_;  // not_own
  BlockDesc *desc_;        // not_own
  bool need_update_;

Y
Fix bug  
Yu Yang 已提交
111 112
  std::deque<std::unique_ptr<OpDescBind>> ops_;
  std::unordered_map<std::string, std::unique_ptr<VarDescBind>> vars_;
Y
Yu Yang 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
};

using ProgDescMap =
    std::unordered_map<ProgramDesc *, std::unique_ptr<ProgramDescBind>>;
static ProgDescMap *g_bind_map = nullptr;

class ProgramDescBind {
public:
  static ProgramDescBind &Instance(ProgramDesc *prog) {
    if (g_bind_map == nullptr) {
      g_bind_map = new ProgDescMap();
    }
    auto &map = *g_bind_map;
    auto &ptr = map[prog];

    if (ptr == nullptr) {
      ptr.reset(new ProgramDescBind(prog));
    }
    return *ptr;
  }
Y
Fix bug  
Yu Yang 已提交
133 134
  ProgramDescBind(const ProgramDescBind &o) = delete;
  ProgramDescBind &operator=(const ProgramDescBind &o) = delete;
Y
Yu Yang 已提交
135

Y
Yu Yang 已提交
136
  BlockDescBind *AppendBlock(const BlockDescBind &parent) {
Y
Yu Yang 已提交
137
    auto *b = prog_->add_blocks();
Y
Yu Yang 已提交
138
    b->set_parent_idx(parent.id());
Y
Yu Yang 已提交
139
    b->set_idx(prog_->blocks_size() - 1);
Y
Fix bug  
Yu Yang 已提交
140 141
    blocks_.emplace_back(new BlockDescBind(this, b));
    return blocks_.back().get();
Y
Yu Yang 已提交
142 143
  }

Y
Fix bug  
Yu Yang 已提交
144
  BlockDescBind *Root() { return blocks_.front().get(); }
Y
Yu Yang 已提交
145

Y
Fix bug  
Yu Yang 已提交
146
  BlockDescBind *Block(size_t idx) { return blocks_[idx].get(); }
Y
Yu Yang 已提交
147 148 149 150 151 152 153

  std::string DebugString() { return Proto()->DebugString(); }

  size_t Size() const { return blocks_.size(); }

  ProgramDesc *Proto() {
    for (auto &block : blocks_) {
Y
Fix bug  
Yu Yang 已提交
154
      block->Sync();
Y
Yu Yang 已提交
155 156 157 158 159 160 161
    }
    return prog_;
  }

private:
  explicit ProgramDescBind(ProgramDesc *prog) : prog_(prog) {
    for (auto &block : *prog->mutable_blocks()) {
Y
Fix bug  
Yu Yang 已提交
162
      blocks_.emplace_back(new BlockDescBind(this, &block));
Y
Yu Yang 已提交
163 164 165 166 167 168
    }
  }

  // Not owned
  ProgramDesc *prog_;

Y
Fix bug  
Yu Yang 已提交
169
  std::vector<std::unique_ptr<BlockDescBind>> blocks_;
Y
Yu Yang 已提交
170 171
};

Y
Fix bug  
Yu Yang 已提交
172 173 174 175 176 177 178
BlockDescBind *BlockDescBind::ParentBlock() const {
  if (this->desc_->parent_idx() == -1) {
    return nullptr;
  }
  return prog_->Block(static_cast<size_t>(this->desc_->parent_idx()));
}

F
fengjiayi 已提交
179
void BindProgramDesc(py::module &m) {
Y
Yu Yang 已提交
180
  py::class_<ProgramDescBind>(m, "ProgramDesc", "")
181
      .def_static("instance",
Y
Yu Yang 已提交
182 183 184
                  []() -> ProgramDescBind * {
                    return &ProgramDescBind::Instance(&GetProgramDesc());
                  },
185 186
                  py::return_value_policy::reference)
      .def_static("__create_program_desc__",
Y
Yu Yang 已提交
187
                  []() -> ProgramDescBind * {
188 189 190 191 192
                    // Only used for unit-test
                    auto *prog_desc = new ProgramDesc;
                    auto *block = prog_desc->mutable_blocks()->Add();
                    block->set_idx(0);
                    block->set_parent_idx(-1);
Y
Yu Yang 已提交
193 194 195
                    return &ProgramDescBind::Instance(prog_desc);
                  },
                  py::return_value_policy::reference)
196
      .def("append_block",
Y
Yu Yang 已提交
197
           &ProgramDescBind::AppendBlock,
198 199
           py::return_value_policy::reference)
      .def("root_block",
Y
Yu Yang 已提交
200
           &ProgramDescBind::Root,
201
           py::return_value_policy::reference)
Y
Yu Yang 已提交
202 203 204
      .def("block", &ProgramDescBind::Block, py::return_value_policy::reference)
      .def("__str__", &ProgramDescBind::DebugString)
      .def("num_blocks", &ProgramDescBind::Size);
205 206
}

F
fengjiayi 已提交
207
void BindBlockDesc(py::module &m) {
Y
Yu Yang 已提交
208 209 210
  py::class_<BlockDescBind>(m, "BlockDesc", "")
      .def_property_readonly("id", &BlockDescBind::id)
      .def_property_readonly("parent", &BlockDescBind::Parent)
211
      .def("append_op",
Y
Yu Yang 已提交
212
           &BlockDescBind::AppendOp,
213 214 215 216 217 218
           py::return_value_policy::reference)
      .def("new_var",
           [](BlockDesc &self) { return self.add_vars(); },
           py::return_value_policy::reference);
}

F
fengjiayi 已提交
219
void BindVarDsec(py::module &m) {
Y
Yu Yang 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
  py::class_<VarDesc>(m, "VarDesc", "");
  //  using namespace paddle::framework;  // NOLINT
  //  py::class_<VarDesc>(m, "VarDesc", "")
  //      .def(py::init<>())
  //      .def("set_name",
  //           [](VarDesc &self, const std::string &name) { self.set_name(name);
  //           })
  //      .def("set_shape",
  //           [](VarDesc &self, const std::vector<int64_t> &dims) {
  //             VectorToRepeated(dims,
  //             self.mutable_lod_tensor()->mutable_dims());
  //           })
  //      .def("set_data_type",
  //           [](VarDesc &self, int type_id) {
  //             LoDTensorDesc *lod_tensor_desc = self.mutable_lod_tensor();
  //             lod_tensor_desc->set_data_type(static_cast<DataType>(type_id));
  //           })
  //      .def("shape", [](VarDesc &self) {
  //        const LoDTensorDesc &lod_tensor_desc = self.lod_tensor();
  //        return RepeatedToVector(lod_tensor_desc.dims());
  //      });
241 242
}

F
fengjiayi 已提交
243
void BindOpDesc(py::module &m) {
Y
Yu Yang 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
  //  auto op_desc_set_var = [](OpDesc::Var *var,
  //                            const std::string &parameter,
  //                            const std::vector<std::string> &arguments) {
  //    var->set_parameter(parameter);
  //    VectorToRepeated(arguments, var->mutable_arguments());
  //  };
  //
  //  auto op_desc_set_attr = [](OpDesc &desc, const std::string &name) {
  //    auto attr = desc.add_attrs();
  //    attr->set_name(name);
  //    return attr;
  //  };
  py::class_<OpDescBind>(m, "OpDesc", "");

  //      .def("type", [](OpDesc &op) { return op.type(); })
  //      .def("set_input",
  //           [op_desc_set_var](OpDesc &self,
  //                             const std::string &parameter,
  //                             const std::vector<std::string> &arguments) {
  //             auto ipt = self.add_inputs();
  //             op_desc_set_var(ipt, parameter, arguments);
  //           })
  //      .def("input_names",
  //           [](OpDesc &self) {
  //             std::vector<std::string> ret_val;
  //             ret_val.reserve(static_cast<size_t>(self.inputs().size()));
  //             std::transform(
  //                 self.inputs().begin(),
  //                 self.inputs().end(),
  //                 std::back_inserter(ret_val),
  //                 [](const OpDesc::Var &var) { return var.parameter(); });
  //             return ret_val;
  //           })
  //      .def("__str__", [](OpDesc &self) { return self.DebugString(); })
  //      .def("set_output",
  //           [op_desc_set_var](OpDesc &self,
  //                             const std::string &parameter,
  //                             const std::vector<std::string> &arguments) {
  //             auto opt = self.add_outputs();
  //             op_desc_set_var(opt, parameter, arguments);
  //           })
  //      .def("set_attr",
  //           [op_desc_set_attr](OpDesc &self, const std::string &name, int i)
  //           {
  //             op_desc_set_attr(self, name)->set_i(i);
  //           });
290
}
291
}  // namespace pybind
292
}  // namespace paddle