tensor.h 8.0 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 <cstdint>
#include <cstring>
H
hanbuhe 已提交
19
#include <fstream>
朔-望's avatar
朔-望 已提交
20
#include <memory>
H
hanbuhe 已提交
21
#include <string>
22
#include <type_traits>
朔-望's avatar
朔-望 已提交
23 24 25
#include <typeindex>
#include <vector>

L
liuruilong 已提交
26
#include "common/enforce.h"
L
liuruilong 已提交
27
#include "framework/data_layout.h"
L
liuruilong 已提交
28
#include "framework/tensor_base.h"
朔-望's avatar
朔-望 已提交
29 30 31
#include "memory/t_malloc.h"

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
32 33
namespace framework {

34 35 36 37 38
enum LayoutType {
  LAYOUT_CHW = 1,
  LAYOUT_HWC = 0,
};

朔-望's avatar
朔-望 已提交
39 40
class LoDTensor;

L
liuruilong 已提交
41
class Tensor : public TensorBase {
朔-望's avatar
朔-望 已提交
42
 public:
L
liuruilong 已提交
43
  Tensor() {}
44
  template <typename T>
L
liuruilong 已提交
45
  Tensor(std::vector<T> input, DDim ddim) {
46 47 48
    PADDLE_MOBILE_ENFORCE(
        input.size() == framework::product(ddim),
        "input vector'length should be equal to tensor's length");
L
liuruilong 已提交
49

50 51 52 53 54
    auto input_ptr = mutable_data<T>(ddim);
    for (int i = 0; i < input.size(); ++i) {
      input_ptr[i] = input[i];
    }
  }
55

L
liuruilong 已提交
56 57 58 59 60 61
  Tensor(const Tensor &inTensor) {
    this->dims_ = inTensor.dims_;
    this->holder_ = inTensor.holder_;
    this->offset_ = inTensor.offset_;
  }

L
liuruilong 已提交
62 63 64 65
  /*! Resize the dimensions of the memory block. */
  inline Tensor &Resize(const DDim &dims) {
    dims_ = dims;
    return *this;
66 67
  }

L
liuruilong 已提交
68 69 70 71 72 73 74
  /*! The internal of two tensors share the same memory block. */
  inline Tensor &ShareDataWith(const Tensor &src) {
    src.check_memory_size();
    if (holder_.get() != src.holder_.get()) {
      *this = src;
    }
    return *this;
75 76 77 78 79
  }

  inline void *mutable_data(std::type_index type) {
    if (holder_ != nullptr) {
      holder_->set_type(type);
朔-望's avatar
朔-望 已提交
80
    }
L
liuruilong 已提交
81
    PADDLE_MOBILE_ENFORCE(numel() >= 0, "the Tensor's numel must >=0.")
82 83 84 85
    int64_t size = numel() * SizeOfType(type);
    if (holder_ == nullptr || holder_->size() < size + offset_) {
      holder_.reset(new PlaceholderImpl(size, type));
      offset_ = 0;
朔-望's avatar
朔-望 已提交
86
    }
87 88 89 90
    return reinterpret_cast<void *>(
        reinterpret_cast<uintptr_t>(holder_->ptr()) + offset_);
  }

L
liuruilong 已提交
91 92 93 94 95 96 97 98 99 100
  /**
   * @brief   Return a pointer to mutable memory block.
   * @note    If not exist, then allocation.
   */
  template <typename T>
  inline T *mutable_data() {
    static_assert(std::is_pod<T>::value, "T must be POD");
    return reinterpret_cast<T *>(mutable_data(typeid(T)));
  }

101 102 103 104 105 106 107 108
  /**
   * @brief     Return a pointer to mutable memory block.
   *
   * @param[in] dims    The dimensions of the memory block.
   * @param[in] place   The place of the memory block.
   *
   * @note      If not exist, then allocation.
   */
朔-望's avatar
朔-望 已提交
109 110
  template <typename T>
  inline T *mutable_data(DDim dims) {
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
    static_assert(std::is_pod<T>::value, "T must be POD");
    Resize(dims);
    return mutable_data<T>();
  }

  /**
   * @brief  Return a sub-tensor of the given tensor.
   *
   * @param[in] begin_idx   The index of the start row(inclusive) to
   * slice.
   *                        The index number begins from 0.
   * @param[in] end_idx     The index of the end row(exclusive) to
   * slice.
   *                        The index number begins from 0.
   */
  inline Tensor Slice(int begin_idx, int end_idx) const {
    check_memory_size();
128 129 130 131 132 133 134
    PADDLE_MOBILE_ENFORCE(begin_idx >= 0,
                          "The start row index must be greater than 0.")
    PADDLE_MOBILE_ENFORCE(end_idx <= dims_[0],
                          "The end row index is out of bound.")
    PADDLE_MOBILE_ENFORCE(
        begin_idx < end_idx,
        "The start row index must be lesser than the end row index")
135 136 137 138 139 140 141 142 143 144 145
    if (dims_[0] == 1) {
      return *this;
    } else {
      size_t base = numel() / dims_[0];
      Tensor dst;
      dst.holder_ = holder_;
      DDim dst_dims = dims_;
      dst_dims[0] = end_idx - begin_idx;
      dst.Resize(dst_dims);
      dst.offset_ = offset_ + begin_idx * base * SizeOfType(type());
      return dst;
朔-望's avatar
朔-望 已提交
146
    }
147 148
  }

L
liuruilong 已提交
149 150 151 152
  /*! Return a pointer to mutable memory block. */
  template <typename T>
  inline T *data() {
    check_memory_size();
153
    PADDLE_MOBILE_ENFORCE(
L
liuruilong 已提交
154 155
        (std::is_same<T, void>::value ||
         holder_->type().hash_code() == typeid(T).hash_code()),
H
hjchen2 已提交
156 157
        "Tensor holds the wrong type, it holds %s, requested %s",
        this->holder_->type().name(), typeid(T).name());
158

L
liuruilong 已提交
159 160
    return reinterpret_cast<T *>(reinterpret_cast<uintptr_t>(holder_->ptr()) +
                                 offset_);
161 162
  }

L
liuruilong 已提交
163 164 165 166
  /*! Return a pointer to constant memory block. */
  template <typename T>
  inline const T *data() const {
    check_memory_size();
W
wangliu 已提交
167
    PADDLE_MOBILE_ENFORCE(
L
liuruilong 已提交
168 169
        (std::is_same<T, void>::value ||
         holder_->type().hash_code() == typeid(T).hash_code()),
H
hjchen2 已提交
170
        "Tensor holds the wrong type, it holds %s, requested %s",
L
liuruilong 已提交
171 172 173 174
        this->holder_->type().name(), typeid(T).name());

    return reinterpret_cast<const T *>(
        reinterpret_cast<uintptr_t>(holder_->ptr()) + offset_);
175 176
  }

朔-望's avatar
朔-望 已提交
177
 private:
178 179 180 181
  struct PlaceholderImpl : public Placeholder {
    PlaceholderImpl(size_t size, std::type_index type)
        : ptr_(static_cast<uint8_t *>(memory::Alloc(size)),
               memory::PODDeleter<uint8_t>()),
朔-望's avatar
朔-望 已提交
182 183
          size_(size),
          type_(type) {
184 185
      PADDLE_MOBILE_ENFORCE(ptr_ != nullptr,
                            "Insufficient memory to allocation");
朔-望's avatar
朔-望 已提交
186 187
    }

188
    virtual size_t size() const { return size_; }
朔-望's avatar
朔-望 已提交
189

190
    virtual void *ptr() const { return static_cast<void *>(ptr_.get()); }
朔-望's avatar
朔-望 已提交
191

192
    virtual std::type_index type() const { return type_; }
朔-望's avatar
朔-望 已提交
193

194
    virtual void set_type(std::type_index type) { type_ = type; }
195

196
    std::unique_ptr<uint8_t, memory::PODDeleter<uint8_t>> ptr_;
朔-望's avatar
朔-望 已提交
197

198 199
    /*! the size of memory block. */
    size_t size_;
朔-望's avatar
朔-望 已提交
200

201 202 203
    /* the current type of memory */
    std::type_index type_;
  };
朔-望's avatar
朔-望 已提交
204

Z
zhangyang 已提交
205
#ifdef PADDLE_MOBILE_FPGA
206
 public:  // NOLINT
Z
zhangyang 已提交
207
  inline void reset_data_ptr(void *p) {
208
    ((PlaceholderImpl *)(holder_.get()))->ptr_.reset((uint8_t *)p);  // NOLINT
Z
zhangyang 已提交
209
  }
210 211
  inline void set_type(std::type_index type) { holder_->set_type(type); }
  inline void *get_data() {
H
hjchen2 已提交
212 213 214
    return (
        void *)(((PlaceholderImpl *)(holder_.get()))->ptr_.get());  // NOLINT
  }
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229

  inline void *init(std::type_index type) {
    if (holder_ != nullptr) {
      holder_->set_type(type);
    }
    PADDLE_MOBILE_ENFORCE(numel() >= 0, "the Tensor's numel must >=0.")
    int64_t size = 1 * SizeOfType(type);
    if (holder_ == nullptr || holder_->size() < size + offset_) {
      holder_.reset(new PlaceholderImpl(size, type));
      offset_ = 0;
    }
    return reinterpret_cast<void *>(
        reinterpret_cast<uintptr_t>(holder_->ptr()) + offset_);
  }

230 231
  float scale[2];                 // scale[0]= MAX/127.0, scale[1]= 127.0/MAX
  void *external_data = nullptr;  // only used for Feed
232 233
  LayoutType layout = LAYOUT_HWC;
  int64_t fpga_data_num;
Z
zhangyang 已提交
234
#endif
朔-望's avatar
朔-望 已提交
235 236
};

237 238 239 240 241
#ifdef PADDLE_MOBILE_DEBUG
inline Print &operator<<(Print &printer, const Tensor &tensor) {
  printer << " dims: " << tensor.dims() << "\n";
  int stride = tensor.numel() / 20;
  stride = stride > 0 ? stride : 1;
H
hanbuhe 已提交
242
#ifndef PADDLE_MOBILE_FPGA
243
  for (int i = 0; i < tensor.numel(); i += stride) {
xiebaiyuan's avatar
xiebaiyuan 已提交
244 245
    if (tensor.type() == typeid(float)) {
      printer << tensor.data<float>()[i] << " ";
246 247
    } else if (tensor.type() == typeid(int32_t)) {
      printer << tensor.data<int32_t>()[i] << " ";
xiebaiyuan's avatar
xiebaiyuan 已提交
248 249
    } else if (tensor.type() == typeid(int64_t)) {
      printer << tensor.data<int64_t>()[i] << " ";
H
hjchen2 已提交
250
    } else if (tensor.type() == typeid(int8_t)) {
251 252 253
      printer << static_cast<int>(tensor.data<int8_t>()[i]) << " ";
    } else if (tensor.type() == typeid(int32_t)) {
      printer << tensor.data<int32_t>()[i] << " ";
xiebaiyuan's avatar
xiebaiyuan 已提交
254
    }
255
  }
H
hanbuhe 已提交
256
#endif
257 258 259 260 261
  return printer;
}

#endif

朔-望's avatar
朔-望 已提交
262
inline Tensor ReshapeToMatrix(const Tensor &src, int num_col_dims) {
263 264 265 266
  Tensor res;
  res.ShareDataWith(src);
  res.Resize(flatten_to_2d(src.dims(), num_col_dims));
  return res;
朔-望's avatar
朔-望 已提交
267 268
}

朔-望's avatar
朔-望 已提交
269 270
}  // namespace framework
}  // namespace paddle_mobile