net.h 5.0 KB
Newer Older
S
Superjom 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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. */

#pragma once

D
dongzhihong 已提交
17 18
#include "paddle/framework/net_proto.pb.h"
#include "paddle/framework/op_proto.pb.h"
S
Superjom 已提交
19
#include "paddle/framework/scope.h"
D
dongzhihong 已提交
20
#include "paddle/platform/device_context.h"
S
Superjom 已提交
21 22 23

namespace paddle {
namespace framework {
D
dongzhihong 已提交
24
using namespace paddle::platform;
S
Superjom 已提交
25 26 27 28 29 30 31 32 33

// operator's index stored in a network.
typedef int OpIndex;
/**
 * NOTE following codes are some definitions of unimplemented concepts.
 * We write some basic implementation to make Net compilable. These APIs will
 * keep updating if the concepts related are implemented.
 */

34 35 36
struct OpDesc;
struct OpAttrs {};

S
Superjom 已提交
37 38 39
class Operator {
 public:
  Operator(const OpDesc &def) {}
Q
Qiao Longfei 已提交
40 41
  void InferShape() const {}
  void Run(const DeviceContext &ctx) const {}
S
Superjom 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
};

/**
 * @brief Network that manage the operators it has.
 *
 * Network is the container and controller of a set of operators, user can build
 * a real network from a NetDesc which is a protobuf message and use
 * Network.Run() * to run all the operators in the network.

 * A network object knows all Operators belonging to this network. Variables,
 * which are inputs and outputs of these operators, are created and managed by a
 * hierarchy of Scope objects.
 *
 * This is the base class of network, all the networks should implement the apis
 * it defines.
 */
class Net {
 public:
  /**
   * @brief Infer shapes of all inputs and outputs of operators.
   */
Q
Qiao Longfei 已提交
63
  virtual void InferShape(const ScopePtr &scope) const = 0;
S
Superjom 已提交
64 65 66 67 68 69 70 71
  /**
   * @brief Run the network.
   *
   * Run all the operators and return success(true) or not, with all the
   * variables are located in `scope`. `context` describes the detail execution
   * environment for ops. `begin` and `end` specify the scope of `ops_` to run,
   * If no positive indexes are provided, all operators in `ops_` will run.
   */
Q
Qiao Longfei 已提交
72
  virtual void Run(const ScopePtr &scope, const DeviceContext &ctx) const = 0;
S
Superjom 已提交
73 74 75 76

  /**
   * @brief Add an Operator according to `def`.
   */
D
dongzhihong 已提交
77
  virtual OpIndex AddOp(const OpProto &def) = 0;
S
Superjom 已提交
78 79 80 81

  /**
   * @brief Add optimizer operators acctording to `attrs`.
   */
S
Superjom 已提交
82
  virtual void AddOptimizerOps(const OpAttrs &attrs) = 0;
S
Superjom 已提交
83 84 85 86

  /**
   * @brief Add backward operators.
   */
S
Superjom 已提交
87
  virtual void AddBackwardOps() = 0;
S
Superjom 已提交
88 89 90 91 92

  /**
   * @brief Create a network.
   */
  static std::unique_ptr<Net> Create(const NetDesc &def = NetDesc());
S
Superjom 已提交
93 94

  virtual ~Net() {}
S
Superjom 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
};

/**
 * @brief a basic implementation of Net.
 *
 * PlainNet is a very simple Net, it create a list of operators, and run them
 * sequentially following the order they added.
 */
class PlainNet : public Net {
 public:
  /**
   * @brief Initialize a PlainNet.
   *
   * Initialize from  a network describe by `def`. NetDesc is the definition of
   * a network.
   */
  PlainNet(const NetDesc &def);

  /**
   * Infer all the operators' input and output varialbes' shapes, will be called
   * before every mini-batch
   */
Q
Qiao Longfei 已提交
117
  virtual void InferShape(const ScopePtr &scope) const override;
S
Superjom 已提交
118 119 120 121 122 123 124 125

  /**
   * @brief Run the network.
   *
   * Run all the operators with the `scope`, if no scope is provided, default
   * scope will be used instead. If no OpContext is provicded, default context
   * will be used.
   */
Q
Qiao Longfei 已提交
126 127
  virtual void Run(const ScopePtr &scope,
                   const DeviceContext &ctx) const override;
S
Superjom 已提交
128 129 130 131

  /**
   * @brief Add an operator to this network.
   */
D
dongzhihong 已提交
132
  virtual OpIndex AddOp(const OpProto &def) override;
S
Superjom 已提交
133 134 135 136

  /**
   * @brief Add all optimizer operators related into the network.
   */
S
Superjom 已提交
137
  virtual void AddOptimizerOps(const OpAttrs &attrs) override;
S
Superjom 已提交
138 139 140 141

  /**
   * @brief Add all backward operators related into the network.
   */
S
Superjom 已提交
142
  virtual void AddBackwardOps() override;
S
Superjom 已提交
143

S
Superjom 已提交
144 145
  virtual ~PlainNet() override {}

S
Superjom 已提交
146 147 148 149 150 151
 protected:
  /**
   * @brief Build the network.
   *
   * Create operators accordding to `def`, will be called by the constructor.
   */
S
Superjom 已提交
152
  void BuildNet(const NetDesc &def);
S
Superjom 已提交
153 154 155 156 157 158 159 160 161

  /**
   * @brief Add an operator into this network.
   *
   * Add a operator which is identified as `type` and has attributes described
   * in `attrs`, the `inputs` are the keys of readonly input variables,
   * `outputs` are keys of mutable output variables. An `OpIndex` will be
   * returned to indicate the offset of the new operator in `ops_`.
   */
162 163 164
  OpIndex AddOp(const std::string &type, const std::vector<std::string> &inputs,
                const std::vector<std::string> &outputs,
                const OpAttrs &attrs = OpAttrs());
S
Superjom 已提交
165 166 167 168 169 170 171 172

 private:
  // the operators owned by `Network`.
  std::vector<Operator> ops_;
};

}  // namespace framework
}  // namespace paddle