Function.h 4.6 KB
Newer Older
H
hedaoyuan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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

#include <map>
#include <vector>
H
hedaoyuan 已提交
19
#include "BufferArg.h"
H
hedaoyuan 已提交
20
#include "paddle/math/Matrix.h"
H
hedaoyuan 已提交
21
#include "paddle/utils/ClassRegistrar.h"
H
hedaoyuan 已提交
22 23 24

namespace paddle {

H
hedaoyuan 已提交
25 26 27 28 29
/**
 * Function Configuration.
 * The argument type of Function::init.
 * Follow-up will consider moving this data structure to Proto inside.
 */
H
hedaoyuan 已提交
30 31 32 33 34
class FuncConfig {
public:
  union value {
    size_t s;
    real r;
35 36
    int i;
    bool b;
H
hedaoyuan 已提交
37 38 39 40 41 42
  };

  template <typename T>
  T get(const std::string& key) const;

  template <typename T>
H
hedaoyuan 已提交
43
  FuncConfig& set(const std::string& key, T v);
H
hedaoyuan 已提交
44 45 46 47 48

protected:
  std::map<std::string, value> valueMap_;
};

H
hedaoyuan 已提交
49 50 51
/**
 * Argument type for Function::calc().
 * A BufferArgs contains a set of BufferArg,
52
 * because Function can have multiple inputs and outputs.
H
hedaoyuan 已提交
53 54 55 56 57 58 59 60
 *
 * addArg() with Matix object used to adapt Layer Argument.
 * Will create a BufferArg object in addArg(),
 * and free in destructor of BufferArgs.
 *
 * addArg() with BufferArg object, just save BufferArg object address,
 * and the caller needs to guarantee the validity of the BufferArg object
 * in the BufferArgs life time.
H
hedaoyuan 已提交
61 62 63 64
 */
class BufferArgs {
public:
  BufferArgs() {}
H
hedaoyuan 已提交
65 66 67 68 69 70 71

  ~BufferArgs() {
    for (auto arg : _args_) {
      delete arg;
    }
  }

H
hedaoyuan 已提交
72 73
  size_t size() const { return args_.size(); }

74 75
  // add argument into BufferArgs
  // Tensor can be Matrix, Vector, IVector.
76 77
  // For inputs, do not need argType.
  // For outputs, the argType needs to be specified as ASSIGN_TO or ADD_TO.
H
hedaoyuan 已提交
78
  template <typename Tensor>
79
  void addArg(const Tensor& arg, ArgType argType = UNSPECIFIED) {
H
hedaoyuan 已提交
80 81
    _args_.push_back(new BufferArg(arg, argType));
    addArg(*_args_.back());
H
hedaoyuan 已提交
82 83
  }

84 85 86 87 88
  // Add arg into BufferArgs and reshape the arg.
  //
  // For example, arg represents an image buffer,
  // but Matrix can only represent a two-dimensional Tensor.
  // So need an extra argument to describe the shape of the image buffer.
89 90 91
  void addArg(const Matrix& arg,
              const TensorShape& shape,
              ArgType argType = UNSPECIFIED);
H
hedaoyuan 已提交
92

93 94
  void addArg(const CpuSparseMatrix& arg, ArgType argType = UNSPECIFIED);
  void addArg(const GpuSparseMatrix& arg, ArgType argType = UNSPECIFIED);
H
hedaoyuan 已提交
95 96 97 98 99 100 101

  // get argument
  const BufferArg& operator[](size_t num) const {
    CHECK_LT(num, args_.size());
    return *args_[num];
  }

H
hedaoyuan 已提交
102 103 104 105 106 107 108 109
  void addArg(BufferArg& arg) { args_.push_back(&arg); }

  void addArg(SequenceIdArg& arg) { args_.push_back(&arg); }

  void addArg(SequenceArg& arg) { args_.push_back(&arg); }

  void addArg(SparseMatrixArg& arg) { args_.push_back(&arg); }

H
hedaoyuan 已提交
110
private:
H
hedaoyuan 已提交
111 112 113
  std::vector<BufferArg*> args_;
  // The BufferArg object is constructed and freed by BufferArgs.
  std::vector<BufferArg*> _args_;
H
hedaoyuan 已提交
114 115 116
};

/**
117
 * \brief Base class for Function.
H
hedaoyuan 已提交
118
 * The basic Function implementation requires override init and calc interfaces.
119
 *
H
hedaoyuan 已提交
120 121 122
 * The caller needs to ensure the validity of the arguments
 * during Function execution.
 *
123 124 125 126 127 128 129 130 131 132 133
 * Function inputs are readonly, Function outputs have two modes: ASSIGN_TO
 * and ADD_TO.
 * If output.getArgType() == ASSIGN_TO, this is assign mode, and the calculation
 * result of Function assigned to the output BufferArg.
 * If output.getArgType() == ADD_TO, this is add mode, and the calculation
 * result of Function need added to the output BufferArg.
 *
 * For example:
 * ASSIGN_TO: output = Function(inputs)
 * ADD_TO: output += Function(inputs)
 * If Function has more than one output, each output can have different modes.
H
hedaoyuan 已提交
134
 */
H
hedaoyuan 已提交
135 136 137 138 139 140
class FunctionBase {
public:
  virtual ~FunctionBase() {}

  virtual void init(const FuncConfig& config) {}

141
  virtual void calc(const BufferArgs& inputs, const BufferArgs& outputs) {}
H
hedaoyuan 已提交
142 143 144 145 146 147

  static ClassRegistrar<FunctionBase> funcRegistrar_;
};

#define FUNC_NAME(typeName, deviceName) #typeName "-" #deviceName

H
hedaoyuan 已提交
148 149 150 151 152
#define REGISTER_TYPED_FUNC(typeName, deviceName, className)   \
  static InitFunction __reg_type_##typeName##deviceName([]() { \
    FunctionBase::funcRegistrar_                               \
        .registerClass<className<DEVICE_TYPE_##deviceName>>(   \
            FUNC_NAME(typeName, deviceName));                  \
H
hedaoyuan 已提交
153 154 155
  })

}  // namespace paddle