ddim.h 4.1 KB
Newer Older
W
wangliu 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
朔-望's avatar
朔-望 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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

L
liuruilong 已提交
17
#include <cstdlib>
朔-望's avatar
朔-望 已提交
18
#include <initializer_list>
19
#include <string>
D
dolphin8 已提交
20
#include <typeinfo>
D
dolphin8 已提交
21
#include <vector>
L
liuruilong 已提交
22

23
#include "common/enforce.h"
朔-望's avatar
朔-望 已提交
24
#include "common/variant.h"
25
#include "framework/dim.h"
朔-望's avatar
朔-望 已提交
26 27

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
28 29 30 31 32 33 34 35
namespace framework {

/**
 * \brief A dynamically sized dimension.
 *
 * The number of dimensions must be between [1, 9].
 */
struct DDim {
36 37 38 39 40 41 42
  typedef Variant<Dim<0>, Dim<1>, Dim<2>, Dim<3>, Dim<4>, Dim<5>, Dim<6>,
                  Dim<7>, Dim<8>, Dim<9>>
      DDimVar;
  DDimVar var;

  template <typename Vistor>
  static typename Vistor::type_t ApplyVistor(Vistor vistor, const DDim &d) {
43
    if (d.var.TypeId() == type_id<Dim<0>>()) {
44
      return vistor(d.var.Get<Dim<0>>());
45
    } else if (d.var.TypeId() == type_id<Dim<1>>()) {
46
      return vistor(d.var.Get<Dim<1>>());
47
    } else if (d.var.TypeId() == type_id<Dim<2>>()) {
48
      return vistor(d.var.Get<Dim<2>>());
49
    } else if (d.var.TypeId() == type_id<Dim<3>>()) {
50
      return vistor(d.var.Get<Dim<3>>());
51
    } else if (d.var.TypeId() == type_id<Dim<4>>()) {
52
      return vistor(d.var.Get<Dim<4>>());
53
    } else if (d.var.TypeId() == type_id<Dim<5>>()) {
54
      return vistor(d.var.Get<Dim<5>>());
55
    } else if (d.var.TypeId() == type_id<Dim<6>>()) {
56
      return vistor(d.var.Get<Dim<6>>());
57
    } else if (d.var.TypeId() == type_id<Dim<7>>()) {
58
      return vistor(d.var.Get<Dim<7>>());
59
    } else if (d.var.TypeId() == type_id<Dim<8>>()) {
60
      return vistor(d.var.Get<Dim<8>>());
61
    } else if (d.var.TypeId() == type_id<Dim<9>>()) {
62 63
      return vistor(d.var.Get<Dim<9>>());
    } else {
64 65
      PADDLE_MOBILE_ENFORCE(false, " dim not support");
      exit(0);
朔-望's avatar
朔-望 已提交
66
    }
67
  }
朔-望's avatar
朔-望 已提交
68

69
  DDim() { var.Set<Dim<1>>(Dim<1>()); }
朔-望's avatar
朔-望 已提交
70

朔-望's avatar
朔-望 已提交
71 72 73 74
  template <int D>
  explicit DDim(const Dim<D> &in) {
    var.Set<Dim<D>>(in);
  }
朔-望's avatar
朔-望 已提交
75

76
  /*implicit*/ DDim(std::initializer_list<int64_t> init_list);
朔-望's avatar
朔-望 已提交
77

朔-望's avatar
朔-望 已提交
78 79
  template <int D>
  DDim &operator=(const Dim<D> &in) {
80 81 82
    var.Set<Dim<D>>(in);
    return *this;
  }
朔-望's avatar
朔-望 已提交
83

84
  int64_t &operator[](int idx);
朔-望's avatar
朔-望 已提交
85

86
  int64_t operator[](int idx) const;
朔-望's avatar
朔-望 已提交
87

88
  DDimVar getVar() { return var; }
朔-望's avatar
朔-望 已提交
89

90
  bool operator==(DDim d) const;
朔-望's avatar
朔-望 已提交
91

92
  bool operator!=(DDim d) const;
朔-望's avatar
朔-望 已提交
93

94
  DDim operator+(DDim d) const;
朔-望's avatar
朔-望 已提交
95

96
  DDim operator*(DDim d) const;
朔-望's avatar
朔-望 已提交
97

98
  int size() const;
朔-望's avatar
朔-望 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
};

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

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<int64_t> dims);

int64_t get(const DDim &dim, int idx);

W
wangliu 已提交
120
void set(DDim *dim, int idx, int val);
朔-望's avatar
朔-望 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141

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

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

int64_t product(const DDim &ddim);

/**
 * \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}
 */
DDim slice_ddim(const DDim &dim, int begin, int end);

/**
 * \brief What is the length of this dimension?
 *
 * \param Dynamic dimension to inspect
 */
朔-望's avatar
朔-望 已提交
142

朔-望's avatar
朔-望 已提交
143
int arity(const DDim &ddim);
朔-望's avatar
朔-望 已提交
144

朔-望's avatar
朔-望 已提交
145 146 147 148
// Reshape a tensor to a matrix. The matrix's first dimension(column
// length)
// will be the product of tensor's first `num_col_dims` dimensions.
DDim flatten_to_2d(const DDim &src, int num_col_dims);
朔-望's avatar
朔-望 已提交
149

朔-望's avatar
朔-望 已提交
150
DDim flatten_to_1d(const DDim &src);
朔-望's avatar
朔-望 已提交
151

朔-望's avatar
朔-望 已提交
152
DDim stride(const DDim &ddim);
朔-望's avatar
朔-望 已提交
153

朔-望's avatar
朔-望 已提交
154
DDim stride_numel(const DDim &ddim);
W
wangliu 已提交
155 156 157 158

#ifdef PADDLE_MOBILE_DEBUG
Print &operator<<(Print &printer, const DDim &ddim);
#endif
朔-望's avatar
朔-望 已提交
159 160
}  // namespace framework
}  // namespace paddle_mobile