ddim.h 3.3 KB
Newer Older
Q
qijun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

F
fengjiayi 已提交
15 16 17 18 19 20
#pragma once

#include <boost/variant.hpp>
#include <initializer_list>
#include <stdexcept>
#include <vector>
21
#include "paddle/framework/dim.h"
Q
qijun 已提交
22
#include "paddle/framework/enforce.h"
Q
init  
qijun 已提交
23
#include "unsupported/Eigen/CXX11/Tensor"
F
fengjiayi 已提交
24

25 26
namespace paddle {
namespace framework {
F
fengjiayi 已提交
27 28

namespace {
29 30
typedef boost::variant<Dim<1>, Dim<2>, Dim<3>, Dim<4>, Dim<5>, Dim<6>, Dim<7>,
                       Dim<8>, Dim<9>>
F
fengjiayi 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44
    DDimVar;
}

/**
 * \brief A dynamically sized dimension.
 *
 * The number of dimensions must be between [1, 9].
 */
struct DDim {
  DDimVar var;

  DDim() : var(Dim<1>()) {}

  template <int D>
L
liaogang 已提交
45
  explicit DDim(const Dim<D>& in) : var(in) {}
F
fengjiayi 已提交
46

47 48
  /*implicit*/ DDim(std::initializer_list<int> init_list);

F
fengjiayi 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  template <int D>
  DDim& operator=(const Dim<D>& in) {
    var = in;
    return *this;
  }

  int& operator[](int idx);
  int operator[](int idx) const;

  template <typename Visitor>
  typename Visitor::result_type apply_visitor(Visitor& visitor) {
    return var.apply_visitor(visitor);
  }

  template <typename Visitor>
  typename Visitor::result_type apply_visitor(Visitor& visitor) const {
    return var.apply_visitor(visitor);
  }

  DDimVar getVar() { return var; }

  bool operator==(DDim d) const;

  bool operator!=(DDim d) const;

  DDim operator+(DDim d) const;

  DDim operator*(DDim d) const;
77 78

  ssize_t size() const;
F
fengjiayi 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
};

/**
 * \brief Make a DDim from std::vector<int>
 *
 * \param dims An vector of ints. Must be sized between [1, 9]
 */
DDim make_ddim(const std::vector<int>& dims);

/**
 * \brief Make a DDim from an initializer list
 *
 * \param dims An initializer list of ints. Must be sized between [1, 9]
 *
 */
DDim make_ddim(std::initializer_list<int> dims);

int get(const DDim& dim, int idx);
void set(DDim& dim, int idx, int val);

std::vector<int> vectorize(const DDim& ddim);

ssize_t product(const DDim& ddim);

F
fengjiayi 已提交
103 104 105 106 107 108 109
/**
 * \brief Slice a ddim
 *
 * Slice dim with [begin, end).
 * e.g.  DDim d = make_ddim({1,2,3,4,5});
 *       slice_ddim(d, 1, 3); ====> {2,3}
 */
110 111
DDim slice_ddim(const DDim& dim, int begin, int end);

F
fengjiayi 已提交
112 113 114 115 116 117 118 119
/**
 * \brief What is the length of this dimension?
 *
 * \param Dynamic dimension to inspect
 */

int arity(const DDim& ddim);

120
std::ostream& operator<<(std::ostream&, const DDim&);
F
fengjiayi 已提交
121

Q
init  
qijun 已提交
122
template <int NDIMS>
Q
qijun 已提交
123 124 125 126 127 128 129 130 131
Eigen::DSizes<Eigen::DenseIndex, NDIMS> ToEigenDSizes(const DDim& dims) {
  int rank = arity(dims);
  PADDLE_ENFORCE(rank == NDIMS, "DDim and NDIMS must be same");
  Eigen::DSizes<Eigen::DenseIndex, NDIMS> dsizes;
  for (int d = 0; d < rank; d++) {
    dsizes[d] = dims[d];
  }
  return dsizes;
}
Q
init  
qijun 已提交
132

133 134
}  // namespace framework
}  // namespace paddle
F
fengjiayi 已提交
135 136 137 138

namespace boost {

template <typename T>
139
T get(const paddle::framework::DDim& in) {
F
fengjiayi 已提交
140 141 142 143
  return boost::get<T>(in.var);
}

}  // namespace boost