Projection.h 4.1 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

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

#include "Layer.h"
Q
qijun 已提交
18
#include "ModelConfig.pb.h"
X
Xin Pan 已提交
19
#include "paddle/legacy/parameter/Parameter.h"
Z
zhangjinchao01 已提交
20 21 22 23 24 25 26 27 28 29

namespace paddle {

// Macro for registering a projection type
// Example: REGISTER_LAYER(fc, FullMatrixProjection);
#define REGISTER_PROJECTION(__type_name, __class_name)                \
  static InitFunction __reg_type_##__type_name([]() {                 \
    Projection::registrar_.registerClass<__class_name>(#__type_name); \
  })

Q
qijun 已提交
30 31 32 33 34
#define REGISTER_PROJECTION_CREATE_FUNC(__type_name, createFunction)    \
  static InitFunction __reg_type_##__type_name([]() {                   \
    Projection::registrar_.registerClass(#__type_name, createFunction); \
  })

Z
zhangjinchao01 已提交
35 36 37 38 39
/**
 * A projection takes one Argument as input, calculate the result and add it
 * to output Argument.
 */
class Projection {
W
Wu Yi 已提交
40
 public:
Z
zhangjinchao01 已提交
41
  static Projection* create(const ProjectionConfig& config,
42 43
                            ParameterPtr parameter,
                            bool useGpu);
Z
zhangjinchao01 已提交
44

45 46
  Projection(const ProjectionConfig& config,
             ParameterPtr parameter,
Z
zhangjinchao01 已提交
47 48 49 50 51 52 53 54 55 56 57 58
             bool useGpu)
      : config_(config), parameter_(parameter), useGpu_(useGpu) {}

  virtual ~Projection() {}

  const std::string& getName() const { return config_.name(); }

  /// Register a projection
  static ClassRegistrar<Projection, ProjectionConfig, ParameterPtr, bool>
      registrar_;

  /**
Q
qijun 已提交
59 60
   * Forward propagation. If backward() will be called, in and out must be kept
   * valid until then.
Z
zhangjinchao01 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
   * @param in input of projection
   * @param out output of projection
   * @param passType PASS_TRAIN of PASS_TEST
   */
  void forward(const Argument* in, const Argument* out, PassType passType) {
    in_ = in;
    out_ = out;
    passType_ = passType;
    forward();
  }

  virtual void prefetch(const Argument* in) {}
  virtual void forward() = 0;
  virtual void backward(const UpdateCallback& callback) = 0;

  /**
   * See comment in Layer.h for the function with the same name.
   */
  virtual void resetState() {}

  /**
   * Set layer state.
   */
  virtual void setState(LayerStatePtr state) {}

  /**
   * Get layer state. A copy of internal state is returned.
   */
  virtual LayerStatePtr getState() { return nullptr; }

91 92 93 94 95
  /**
   * init forward_ and backward_ functions
   */
  virtual bool init() { return true; }

Z
zhangjinchao01 已提交
96 97 98 99 100
  /**
   * Get output size of projection.
   */
  size_t getOutputSize() const { return config_.output_size(); }

W
Wu Yi 已提交
101
 protected:
102 103 104
  /**
   * Create layer function. Function is called in forward or backward.
   * \param function, Layer::forward_ or Layer::backward_
105
   * \param name, function name
106 107 108 109 110
   * \param config, initialization configuration for the function
   */
  void createFunction(std::vector<std::shared_ptr<FunctionBase>>& function,
                      const std::string& name,
                      const FuncConfig& config) {
111 112 113 114 115 116 117
    if (useGpu_) {
      function.emplace_back(
          FunctionBase::funcRegistrar_.createByType(name + "-GPU"));
    } else {
      function.emplace_back(
          FunctionBase::funcRegistrar_.createByType(name + "-CPU"));
    }
118 119 120 121
    auto& func = function.back();
    func->init(config);
  }

W
Wu Yi 已提交
122
 protected:
Z
zhangjinchao01 已提交
123 124 125 126 127 128 129 130 131 132 133 134
  /// Config of projection
  ProjectionConfig config_;
  /// Parameter of projection
  ParameterPtr parameter_;
  bool useGpu_;

  /// Store `in` passed to forward()
  const Argument* in_;
  /// Store `out` passed to forward()
  const Argument* out_;
  /// Store `passType` passed to forward()
  PassType passType_;
135 136 137 138
  /// Layer forward function
  std::vector<std::shared_ptr<FunctionBase>> forward_;
  /// Layer backward function
  std::vector<std::shared_ptr<FunctionBase>> backward_;
Z
zhangjinchao01 已提交
139 140
};
}  // namespace paddle