Function.h 2.4 KB
Newer Older
H
hedaoyuan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* 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>
#include "paddle/math/Matrix.h"
H
hedaoyuan 已提交
20
#include "paddle/utils/ClassRegistrar.h"
H
hedaoyuan 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

namespace paddle {

enum DeviceType {
  DEVICE_TYPE_UNSPECIFIED = 0,
  DEVICE_TYPE_CPU = 1,
  DEVICE_TYPE_GPU = 2,
};

template <DeviceType Device>
struct MatrixT;

template <>
struct MatrixT<DEVICE_TYPE_CPU> {
  using type = CpuMatrix;
};

template <>
struct MatrixT<DEVICE_TYPE_GPU> {
  using type = GpuMatrix;
};

43 44 45 46 47 48 49 50 51 52 53 54 55
template <DeviceType Device>
struct SequenceT;

template <>
struct SequenceT<DEVICE_TYPE_CPU> {
  using type = CpuIVector;
};

template <>
struct SequenceT<DEVICE_TYPE_GPU> {
  using type = GpuIVector;
};

56 57 58 59 60 61
typedef std::vector<size_t> Dims;

class Tensor {
public:
  Tensor(real* data, const Dims& dim) : buf_(data), dims_(dim) {}

H
hedaoyuan 已提交
62 63
  real* getData() const { return buf_; }

64 65 66 67 68
  real* buf_;
  Dims dims_;
};

typedef std::vector<Tensor> Arguments;
H
hedaoyuan 已提交
69 70 71 72 73 74

class FuncConfig {
public:
  union value {
    size_t s;
    real r;
75 76
    int i;
    bool b;
H
hedaoyuan 已提交
77 78 79 80 81 82
  };

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

  template <typename T>
H
hedaoyuan 已提交
83
  FuncConfig& set(const std::string& key, T v);
H
hedaoyuan 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

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

class FunctionBase {
public:
  virtual ~FunctionBase() {}

  virtual void init(const FuncConfig& config) {}

  virtual void calc(const Arguments& inputs,
                    const Arguments& outputs,
                    const Arguments& inouts) {}

  static ClassRegistrar<FunctionBase> funcRegistrar_;
};

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

H
hedaoyuan 已提交
104 105 106 107 108
#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 已提交
109 110 111
  })

}  // namespace paddle