net_op.h 2.8 KB
Newer Older
S
Superjom 已提交
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

Q
Qiao Longfei 已提交
3 4 5
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
S
Superjom 已提交
6

Q
Qiao Longfei 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
S
Superjom 已提交
8

Q
Qiao Longfei 已提交
9 10 11 12 13
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. */
S
Superjom 已提交
14 15 16

#pragma once

Q
Qiao Longfei 已提交
17
#include "paddle/framework/op_registry.h"
S
Superjom 已提交
18 19

namespace paddle {
Y
Yan Chunwei 已提交
20 21
namespace operators {

S
Superjom 已提交
22
/**
Q
Qiao Longfei 已提交
23 24 25
 * @brief Network is also a type of Operator
 *
 * It will manage the operators it has.
S
Superjom 已提交
26
 *
Q
Qiao Longfei 已提交
27
 * Network is the container and controller of a set of operators.
S
Superjom 已提交
28 29 30 31 32

 * 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.
 *
Q
Qiao Longfei 已提交
33
 * This is the base class of network, all the networks should implement the APIs
S
Superjom 已提交
34 35
 * it defines.
 */
Y
Yan Chunwei 已提交
36
class NetOp : public framework::OperatorBase {
37
 public:
S
Superjom 已提交
38
  /**
Q
Qiao Longfei 已提交
39
   * Infer all the operators' input and output variables' shapes, will be called
S
Superjom 已提交
40 41
   * before every mini-batch
   */
Y
Yan Chunwei 已提交
42
  void InferShape(const framework::Scope& scope) const override {
Q
Qiao Longfei 已提交
43 44 45 46
    for (auto& op : ops_) {
      op->InferShape(scope);
    }
  }
S
Superjom 已提交
47 48 49 50 51 52 53 54

  /**
   * @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.
   */
Y
Yan Chunwei 已提交
55
  void Run(const framework::Scope& scope,
Q
Qiao Longfei 已提交
56 57 58 59 60
           const platform::DeviceContext& dev_ctx) const override {
    for (auto& op : ops_) {
      op->Run(scope, dev_ctx);
    }
  }
S
Superjom 已提交
61 62

  /**
Q
Qiao Longfei 已提交
63
   * @brief Add an operator by ptr
S
Superjom 已提交
64
   */
Y
Yu Yang 已提交
65
  void AddOp(const std::shared_ptr<OperatorBase>& op) {
Q
Qiao Longfei 已提交
66
    PADDLE_ENFORCE(!add_op_done_, "Cannot AddOp when this network is sealed");
Y
Yu Yang 已提交
67
    PADDLE_ENFORCE(op != nullptr, "Cannot Insert Null op");
Q
Qiao Longfei 已提交
68 69
    ops_.push_back(op);
  }
S
Superjom 已提交
70

Y
Yu Yang 已提交
71 72 73 74 75 76 77 78
  void InsertOp(size_t pos, const std::shared_ptr<OperatorBase>& op) {
    PADDLE_ENFORCE(!add_op_done_,
                   "Cannot InsertOp when this network is sealed");
    PADDLE_ENFORCE(op != nullptr, "Cannot Insert Null op");
    PADDLE_ENFORCE(pos <= ops_.size(), "Out of range");
    ops_.insert(ops_.begin() + pos, op);
  }

Y
Yu Yang 已提交
79
  void CompleteAddOp(bool calculate = true);
S
Superjom 已提交
80

81 82
  std::string DebugString() const override;

Y
Yu Yang 已提交
83 84
  bool IsNetOp() const override;

Y
Yu Yang 已提交
85
  std::vector<std::shared_ptr<OperatorBase>> ops_;
S
Superjom 已提交
86

87
 private:
Q
Qiao Longfei 已提交
88 89 90 91 92 93
  bool add_op_done_{false};

  template <typename T, typename KeyType>
  static bool Contains(T container, KeyType key) {
    return container.find(key) != container.end();
  }
S
Superjom 已提交
94 95
};

Y
Yan Chunwei 已提交
96
}  // namespace operators
S
Superjom 已提交
97
}  // namespace paddle