eigen.h 4.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yi Wang 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15

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
dzhwinter 已提交
16
// logging.h and windows.h conflict
D
dzhwinter 已提交
17
#define GLOG_NO_ABBREVIATED_SEVERITIES
Y
Yi Wang 已提交
18

Y
Yi Wang 已提交
19
#include "paddle/fluid/framework/tensor.h"
Y
Yi Wang 已提交
20 21 22 23 24 25 26 27
#include "unsupported/Eigen/CXX11/Tensor"

namespace paddle {
namespace framework {

// EigenDim converts paddle::platform::DDim into Eigen::DSizes.
template <int D>
struct EigenDim {
Q
qijun 已提交
28
  using Type = Eigen::DSizes<Eigen::DenseIndex, D>;
Y
Yi Wang 已提交
29 30 31 32

  static Type From(const DDim& dims) {
    PADDLE_ENFORCE(arity(dims) == D, "D must match arity(DDim)");
    Type ret;
Q
qijun 已提交
33
    for (int64_t d = 0; d < arity(dims); d++) {
Y
Yi Wang 已提交
34 35 36 37 38 39 40
      ret[d] = dims[d];
    }
    return ret;
  }
};

// Interpret paddle::platform::Tensor as EigenTensor and EigenConstTensor.
41 42
template <typename T, size_t D, int MajorType = Eigen::RowMajor,
          typename IndexType = Eigen::DenseIndex>
Y
Yi Wang 已提交
43
struct EigenTensor {
44 45 46
  // TODO(qijun) Now, default type in unaligned, and we will make a benchmark on
  // the speed of aligned and unaligned version in future.
  using Type = Eigen::TensorMap<Eigen::Tensor<T, D, MajorType, IndexType>>;
Y
Yi Wang 已提交
47 48

  using ConstType =
49
      Eigen::TensorMap<Eigen::Tensor<const T, D, MajorType, IndexType>>;
Y
Yi Wang 已提交
50

D
dzhwinter 已提交
51
  static Type From(Tensor& tensor, DDim dims) {  // NOLINT
Y
Yi Wang 已提交
52 53 54
    return Type(tensor.data<T>(), EigenDim<D>::From(dims));
  }

D
dzhwinter 已提交
55 56 57
  static Type From(Tensor& tensor) {  // NOLINT
    return From(tensor, tensor.dims_);
  }  // NOLINT
Y
Yi Wang 已提交
58 59 60 61 62 63 64 65 66 67

  static ConstType From(const Tensor& tensor, DDim dims) {
    return ConstType(tensor.data<T>(), EigenDim<D>::From(dims));
  }

  static ConstType From(const Tensor& tensor) {
    return From(tensor, tensor.dims_);
  }
};

68 69
template <typename T, int MajorType = Eigen::RowMajor,
          typename IndexType = Eigen::DenseIndex>
F
WIP  
fengjiayi 已提交
70
struct EigenMatrix : public EigenTensor<T, 2, MajorType, IndexType> {
D
dzhwinter 已提交
71 72
  static typename EigenMatrix::Type Reshape(Tensor& tensor,  // NOLINT
                                            int num_col_dims) {
F
WIP  
fengjiayi 已提交
73
    int rank = tensor.dims_.size();
F
fengjiayi 已提交
74 75
    PADDLE_ENFORCE(num_col_dims > 0 && num_col_dims < rank,
                   "`num_col_dims` must be between (0, rank_of_tensor).");
76
    return EigenMatrix::From(tensor,
F
fengjiayi 已提交
77
                             flatten_to_2d(tensor.dims(), num_col_dims));
F
WIP  
fengjiayi 已提交
78
  }
F
fengjiayi 已提交
79 80

  static typename EigenMatrix::ConstType Reshape(const Tensor& tensor,
F
fengjiayi 已提交
81
                                                 int num_col_dims) {
F
fengjiayi 已提交
82
    int rank = tensor.dims_.size();
F
fengjiayi 已提交
83 84
    PADDLE_ENFORCE(num_col_dims > 0 && num_col_dims < rank,
                   "`num_col_dims` must be between (0, rank_of_tensor).");
F
fengjiayi 已提交
85
    return EigenMatrix::From(tensor,
F
fengjiayi 已提交
86
                             flatten_to_2d(tensor.dims(), num_col_dims));
F
fengjiayi 已提交
87
  }
F
WIP  
fengjiayi 已提交
88
};
89

90 91 92
template <typename T, int MajorType = Eigen::RowMajor,
          typename IndexType = Eigen::DenseIndex>
struct EigenVector : public EigenTensor<T, 1, MajorType, IndexType> {
93
  // Flatten reshapes a Tensor into an EigenVector.
D
dzhwinter 已提交
94
  static typename EigenVector::Type Flatten(Tensor& tensor) {  // NOLINT
F
fengjiayi 已提交
95
    return EigenVector::From(tensor, {product(tensor.dims_)});
Q
qijun 已提交
96 97
  }

D
dzhwinter 已提交
98 99
  static typename EigenVector::ConstType Flatten(
      const Tensor& tensor) {  // NOLINT
F
fengjiayi 已提交
100
    return EigenVector::From(tensor, {product(tensor.dims_)});
Q
qijun 已提交
101
  }
Y
Yi Wang 已提交
102 103
};

L
liaogang 已提交
104 105 106 107 108 109 110 111 112
template <typename T, int MajorType = Eigen::RowMajor,
          typename IndexType = Eigen::DenseIndex>
struct EigenScalar {
  // Scalar tensor (implemented as a rank-0 tensor) of scalar type T.
  using Type = Eigen::TensorMap<
      Eigen::TensorFixedSize<T, Eigen::Sizes<>, MajorType, IndexType>>;
  using ConstType = Eigen::TensorMap<
      Eigen::TensorFixedSize<const T, Eigen::Sizes<>, MajorType, IndexType>>;

D
dzhwinter 已提交
113
  static Type From(Tensor& tensor) { return Type(tensor.data<T>()); }  // NOLINT
L
liaogang 已提交
114 115 116 117 118 119

  static ConstType From(const Tensor& tensor) {
    return ConstType(tensor.data<T>());
  }
};

Y
Yi Wang 已提交
120 121
}  // namespace framework
}  // namespace paddle