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 17 18

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 <initializer_list>
#include <vector>
D
dolphin8 已提交
19
#include <typeinfo>
20
#include "common/enforce.h"
朔-望's avatar
朔-望 已提交
21 22
#include "common/variant.h"
#include "dim.h"
朔-望's avatar
朔-望 已提交
23 24

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
25 26 27 28 29 30 31 32
namespace framework {

/**
 * \brief A dynamically sized dimension.
 *
 * The number of dimensions must be between [1, 9].
 */
struct DDim {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
  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) {
    if (d.var.TypeId() == typeid(Dim<0>).hash_code()) {
      return vistor(d.var.Get<Dim<0>>());
    } else if (d.var.TypeId() == typeid(Dim<1>).hash_code()) {
      return vistor(d.var.Get<Dim<1>>());
    } else if (d.var.TypeId() == typeid(Dim<2>).hash_code()) {
      return vistor(d.var.Get<Dim<2>>());
    } else if (d.var.TypeId() == typeid(Dim<3>).hash_code()) {
      return vistor(d.var.Get<Dim<3>>());
    } else if (d.var.TypeId() == typeid(Dim<4>).hash_code()) {
      return vistor(d.var.Get<Dim<4>>());
    } else if (d.var.TypeId() == typeid(Dim<5>).hash_code()) {
      return vistor(d.var.Get<Dim<5>>());
    } else if (d.var.TypeId() == typeid(Dim<6>).hash_code()) {
      return vistor(d.var.Get<Dim<6>>());
    } else if (d.var.TypeId() == typeid(Dim<7>).hash_code()) {
      return vistor(d.var.Get<Dim<7>>());
    } else if (d.var.TypeId() == typeid(Dim<8>).hash_code()) {
      return vistor(d.var.Get<Dim<8>>());
    } else if (d.var.TypeId() == typeid(Dim<9>).hash_code()) {
      return vistor(d.var.Get<Dim<9>>());
    } else {
61
      DLOG << " dim not support";
朔-望's avatar
朔-望 已提交
62
    }
63
  }
朔-望's avatar
朔-望 已提交
64

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

朔-望's avatar
朔-望 已提交
67 68 69 70
  template <int D>
  explicit DDim(const Dim<D> &in) {
    var.Set<Dim<D>>(in);
  }
朔-望's avatar
朔-望 已提交
71

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

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

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

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

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

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

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

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

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

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

/**
 * \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 已提交
116
void set(DDim *dim, int idx, int val);
朔-望's avatar
朔-望 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

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
朔-望 已提交
138

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

朔-望's avatar
朔-望 已提交
141 142 143 144
// 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
朔-望 已提交
145

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

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

朔-望's avatar
朔-望 已提交
150
DDim stride_numel(const DDim &ddim);
W
wangliu 已提交
151 152 153 154

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