protobuf.cc 9.5 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>
Y
Yu Yang 已提交
17
#include <iostream>
18
#include "paddle/framework/backward.h"
F
fengjiayi 已提交
19 20 21 22
#include "paddle/framework/block_desc.h"
#include "paddle/framework/op_desc.h"
#include "paddle/framework/program_desc.h"
#include "paddle/framework/var_desc.h"
23

Y
Yu Yang 已提交
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
// Cast boost::variant for PyBind.
// Copy from
// https://github.com/pybind/pybind11/issues/576#issuecomment-269563199
namespace pybind11 {
namespace detail {

// Can be replaced by a generic lambda in C++14
struct variant_caster_visitor : public boost::static_visitor<handle> {
  return_value_policy policy;
  handle parent;

  variant_caster_visitor(return_value_policy policy, handle parent)
      : policy(policy), parent(parent) {}

  template <class T>
  handle operator()(T const &src) const {
    return make_caster<T>::cast(src, policy, parent);
  }
};

template <class Variant>
struct variant_caster;

template <template <class...> class V, class... Ts>
struct variant_caster<V<Ts...>> {
  using Type = V<Ts...>;

Y
Yu Yang 已提交
51 52
  template <typename T>
  typename std::enable_if<
Y
Yu Yang 已提交
53
      !std::is_same<T, boost::detail::variant::void_>::value, bool>::type
Y
Yu Yang 已提交
54
  try_load(handle src, bool convert) {
Y
Yu Yang 已提交
55 56 57 58 59 60 61 62 63
    auto caster = make_caster<T>();
    if (!load_success_ && caster.load(src, convert)) {
      load_success_ = true;
      value = cast_op<T>(caster);
      return true;
    }
    return false;
  }

Y
Yu Yang 已提交
64 65 66 67 68 69 70
  template <typename T>
  typename std::enable_if<std::is_same<T, boost::detail::variant::void_>::value,
                          bool>::type
  try_load(handle src, bool convert) {
    return false;
  }

Y
Yu Yang 已提交
71 72 73 74 75 76
  bool load(handle src, bool convert) {
    auto unused = {false, try_load<Ts>(src, convert)...};
    (void)(unused);
    return load_success_;
  }

Y
Yu Yang 已提交
77
  static handle cast(Type const &src, return_value_policy policy,
Y
Yu Yang 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
                     handle parent) {
    variant_caster_visitor visitor(policy, parent);
    return boost::apply_visitor(visitor, src);
  }

  PYBIND11_TYPE_CASTER(Type, _("Variant"));
  bool load_success_{false};
};

// Add specialization for concrete variant type
template <class... Args>
struct type_caster<boost::variant<Args...>>
    : variant_caster<boost::variant<Args...>> {};

}  // namespace detail
}  // namespace pybind11

95
namespace paddle {
96
namespace pybind {
97

F
fengjiayi 已提交
98 99
using namespace paddle::framework;  // NOLINT

Y
Yu Yang 已提交
100 101 102 103 104 105 106 107 108
template <typename T>
static py::bytes SerializeMessage(T &self) {
  // Check IsInitialized in Python
  std::string retv;
  PADDLE_ENFORCE(self.Proto()->SerializePartialToString(&retv),
                 "Cannot serialize message");
  return retv;
}

Y
Yu Yang 已提交
109
// Bind Methods
F
fengjiayi 已提交
110
void BindProgramDesc(py::module &m) {
Y
Yu Yang 已提交
111
  py::class_<ProgramDesc>(m, "ProgramDesc", "")
112
      .def(py::init<>())
Y
Yu Yang 已提交
113
      .def("__init__",
Y
Yu Yang 已提交
114 115
           [](ProgramDesc &self, const ProgramDesc &other) {
             new (&self) ProgramDesc(other);
Y
Yu Yang 已提交
116
           })
117
      .def("__init__",
Y
Yu Yang 已提交
118
           [](ProgramDesc &self, const py::bytes &binary_str) {
119
             std::string str(binary_str);
Y
Yu Yang 已提交
120
             new (&self) ProgramDesc(str);
121
           })
Y
Yu Yang 已提交
122
      .def("append_block", &ProgramDesc::AppendBlock,
123
           py::return_value_policy::reference)
124
      .def("append_backward",
Y
Yu Yang 已提交
125
           [](ProgramDesc &program_desc, const VarDesc &target,
126
              const std::unordered_set<std::string> &no_grad_vars) {
Q
qiaolongfei 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139
             ParamGradInfoMap param_grad_map =
                 AppendBackward(program_desc, target, no_grad_vars);
             std::unordered_map<
                 std::string, std::tuple<std::string /* grad_var_name */,
                                         int /* block_idx */, int /* op_idx */>>
                 retv;
             for (auto it = param_grad_map.begin(); it != param_grad_map.end();
                  ++it) {
               const auto &grad_info = it->second;
               retv[it->first] = std::make_tuple(
                   grad_info.name_, grad_info.block_idx_, grad_info.op_idx_);
             }
             return retv;
140
           })
Y
Yu Yang 已提交
141
      .def("block", &ProgramDesc::MutableBlock,
142
           py::return_value_policy::reference)
Y
Yu Yang 已提交
143 144
      .def("num_blocks", &ProgramDesc::Size)
      .def("serialize_to_string", SerializeMessage<ProgramDesc>)
145
      .def("parse_from_string",
Y
Yu Yang 已提交
146
           [](ProgramDesc &program_desc, const std::string &data) {
147
             proto::ProgramDesc *desc = program_desc.Proto();
148 149 150
             PADDLE_ENFORCE(desc->ParseFromString(data),
                            "Fail to parse ProgramDesc from string. This could "
                            "be a bug of Paddle.");
151
           });
152 153
}

F
fengjiayi 已提交
154
void BindBlockDesc(py::module &m) {
Y
Yu Yang 已提交
155 156 157 158
  py::class_<BlockDesc>(m, "BlockDesc", "")
      .def_property_readonly("id", &BlockDesc::ID)
      .def_property_readonly("parent", &BlockDesc::Parent)
      .def("append_op", &BlockDesc::AppendOp,
F
fengjiayi 已提交
159
           py::return_value_policy::reference)
Y
Yu Yang 已提交
160
      .def("prepend_op", &BlockDesc::PrependOp,
161
           py::return_value_policy::reference)
T
typhoonzero 已提交
162
      .def("remove_op", &BlockDescBind::RemoveOp)
D
dongzhihong 已提交
163
      .def("var",
Y
Yu Yang 已提交
164
           [](BlockDesc &self, py::bytes byte_name) {
F
fengjiayi 已提交
165
             std::string name = byte_name;
D
dongzhihong 已提交
166
             return self.Var(name);
F
fengjiayi 已提交
167
           },
Y
Yu Yang 已提交
168
           py::return_value_policy::reference)
Q
Qiao Longfei 已提交
169
      .def("has_var",
Y
Yu Yang 已提交
170
           [](BlockDesc &self, py::bytes byte_name) {
Q
Qiao Longfei 已提交
171 172 173
             std::string name = byte_name;
             return self.HasVar(name);
           })
D
Dong Zhihong 已提交
174
      .def("find_var",
Y
Yu Yang 已提交
175
           [](BlockDesc &self, py::bytes byte_name) {
F
fengjiayi 已提交
176
             std::string name = byte_name;
D
Dong Zhihong 已提交
177
             return self.FindVar(name);
F
fengjiayi 已提交
178
           },
F
fengjiayi 已提交
179
           py::return_value_policy::reference)
Y
Yu Yang 已提交
180 181 182 183
      .def("all_vars", &BlockDesc::AllVars, py::return_value_policy::reference)
      .def("op_size", &BlockDesc::OpSize)
      .def("op", &BlockDesc::Op, py::return_value_policy::reference)
      .def("serialize_to_string", SerializeMessage<BlockDesc>);
184 185
}

F
fengjiayi 已提交
186
void BindVarDsec(py::module &m) {
187 188 189 190 191 192 193 194
  py::enum_<proto::DataType>(m, "DataType", "")
      .value("BOOL", proto::DataType::BOOL)
      .value("INT16", proto::DataType::INT16)
      .value("INT32", proto::DataType::INT32)
      .value("INT64", proto::DataType::INT64)
      .value("FP16", proto::DataType::FP16)
      .value("FP32", proto::DataType::FP32)
      .value("FP64", proto::DataType::FP64);
F
Fix bug  
fengjiayi 已提交
195

Y
Yu Yang 已提交
196
  py::class_<VarDesc> var_desc(m, "VarDesc", "");
Y
Yu Yang 已提交
197
  var_desc
F
fengjiayi 已提交
198
      .def("name",
Y
Yu Yang 已提交
199
           [](const VarDesc &self) {
F
fengjiayi 已提交
200 201 202 203
             py::bytes name = self.Name();
             return name;
           },
           py::return_value_policy::reference)
Y
Yu Yang 已提交
204 205 206 207 208 209 210 211 212 213 214
      .def("set_shape", &VarDesc::SetShape)
      .def("set_dtype", &VarDesc::SetDataType)
      .def("shape", &VarDesc::Shape, py::return_value_policy::reference)
      .def("dtype", &VarDesc::GetDataType)
      .def("lod_level", &VarDesc::GetLodLevel)
      .def("set_lod_level", &VarDesc::SetLoDLevel)
      .def("type", &VarDesc::GetType)
      .def("set_type", &VarDesc::SetType)
      .def("serialize_to_string", SerializeMessage<VarDesc>)
      .def("persistable", &VarDesc::Persistable)
      .def("set_persistable", &VarDesc::SetPersistable);
Y
Yu Yang 已提交
215

216 217 218 219 220 221 222 223
  py::enum_<proto::VarDesc::VarType>(var_desc, "VarType", "")
      .value("LOD_TENSOR", proto::VarDesc::LOD_TENSOR)
      .value("SELECTED_ROWS", proto::VarDesc::SELECTED_ROWS)
      .value("FEED_MINIBATCH", proto::VarDesc::FEED_MINIBATCH)
      .value("FETCH_LIST", proto::VarDesc::FETCH_LIST)
      .value("STEP_SCOPES", proto::VarDesc::STEP_SCOPES)
      .value("LOD_RANK_TABLE", proto::VarDesc::LOD_RANK_TABLE)
      .value("LOD_TENSOR_ARRAY", proto::VarDesc::LOD_TENSOR_ARRAY);
224 225
}

F
fengjiayi 已提交
226
void BindOpDesc(py::module &m) {
227 228 229 230 231 232 233 234 235 236
  py::enum_<proto::AttrType>(m, "AttrType", "")
      .value("INT", proto::AttrType::INT)
      .value("INTS", proto::AttrType::INTS)
      .value("FLOAT", proto::AttrType::FLOAT)
      .value("FLOATS", proto::AttrType::FLOATS)
      .value("STRING", proto::AttrType::STRING)
      .value("STRINGS", proto::AttrType::STRINGS)
      .value("BOOL", proto::AttrType::BOOLEAN)
      .value("BOOLS", proto::AttrType::BOOLEANS)
      .value("BLOCK", proto::AttrType::BLOCK);
Y
Yu Yang 已提交
237

Y
Yu Yang 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
  py::class_<OpDesc> op_desc(m, "OpDesc", "");
  op_desc.def("type", &OpDesc::Type)
      .def("set_type", &OpDesc::SetType)
      .def("input", &OpDesc::Input)
      .def("input_names", &OpDesc::InputNames)
      .def("set_input", &OpDesc::SetInput)
      .def("output", &OpDesc::Output)
      .def("output_names", &OpDesc::OutputNames)
      .def("set_output", &OpDesc::SetOutput)
      .def("has_attr", &OpDesc::HasAttr)
      .def("attr_type", &OpDesc::GetAttrType)
      .def("attr_names", &OpDesc::AttrNames)
      .def("set_attr", &OpDesc::SetAttr)
      .def("attr", &OpDesc::GetAttr)
      .def("set_block_attr", &OpDesc::SetBlockAttr)
T
typhoonzero 已提交
253 254 255 256 257 258
      .def("set_serialized_attr",
           [](OpDescBind &self, const std::string &name,
              const py::bytes &seriralized) {
             std::string ser(seriralized);
             self.SetAttr(name, ser);
           })
Y
Yu Yang 已提交
259 260 261 262 263
      .def("block_attr", &OpDesc::GetBlockAttr)
      .def("check_attrs", &OpDesc::CheckAttrs)
      .def("infer_shape", &OpDesc::InferShape)
      .def("infer_var_type", &OpDesc::InferVarType)
      .def("serialize_to_string", SerializeMessage<OpDesc>);
264
}
Y
Yu Yang 已提交
265

266
}  // namespace pybind
267
}  // namespace paddle