dense_tensor.h 7.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.

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 "paddle/pten/core/allocator.h"
#include "paddle/pten/core/storage.h"
#include "paddle/pten/core/tensor_base.h"
#include "paddle/pten/core/tensor_meta.h"

namespace pten {

24 25
class CompatibleDenseTensorUtils;

26 27 28 29 30 31 32 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
/// \brief The Dense tensor store values in a contiguous sequential block
/// of memory where all values are represented. Tensors or multi-dimensional
/// arrays are used in math operators.
/// During the entire life cycle of a DenseTensor, its device type and key
/// metadata are set unchanged.
class DenseTensor : public TensorBase,
                    public TypeInfoTraits<TensorBase, DenseTensor> {
 public:
  /// \brief Construct a dense tensor and allocate space.
  /// \param a The allocator used to allocate space.
  /// \param meta The meta data of dense tensor.
  DenseTensor(const std::shared_ptr<Allocator>& a, const DenseTensorMeta& meta);

  /// \brief Construct a dense tensor and allocate space.
  /// \param a The allocator used to allocate space.
  /// \param meta The meta data of dense tensor.
  DenseTensor(const std::shared_ptr<Allocator>& a, DenseTensorMeta&& meta);

  /// \brief Use existing storage space to create dense tensor. This interface
  /// can be used to deliberately create an uninitialized dense tensor.
  /// \param storage The existing storage.
  /// \param meta The meta data of dense tensor.
  DenseTensor(intrusive_ptr<Storage> storage, const DenseTensorMeta& meta);

  /// \brief Use existing storage space to create dense tensor. This interface
  /// can be used to deliberately create an uninitialized dense tensor.
  /// \param storage The existing storage.
  /// \param meta The meta data of dense tensor.
  DenseTensor(intrusive_ptr<Storage> storage, DenseTensorMeta&& meta);

  /// \brief Because dense tensor is a kind of container, we give a default
  /// constructor to use for stl container. But the dense tensor created with
  /// the default constructor is not practical.
  DenseTensor() = default;

  /// \brief Because dense tensor is a resource handle, we provide a default
  /// move constructor to support move semantics.
  DenseTensor(DenseTensor&& other) = default;

  /// \brief We do not recommend deep copy of dense tensor because of its
  /// efficiency and complexity across devices. The operation is disabled here.
  DenseTensor(const DenseTensor& other) = delete;

  /// \brief Destroy the tensor object and release exclusive resources.
  virtual ~DenseTensor() = default;

 public:
  /// \brief Returns the name of the class for type traits.
  /// \return The name of the class.
  static const char* name() { return "DenseTensor"; }

  /// \brief Returns the number of elements contained in tensor.
  /// \return The number of elements contained in tensor.
79
  int64_t numel() const override;
80 81 82

  /// \brief Returns the dims of the tensor.
  /// \return The dims of the tensor.
83
  const DDim& dims() const noexcept override { return meta_.dims; }
84 85 86 87 88 89 90 91 92 93 94 95

  /// \brief Returns the lod of the tensor.
  /// \return The lod of the tensor.
  const std::vector<std::vector<size_t>>& lod() const noexcept {
    return meta_.lod;
  }

  /// \brief Set the lod of the tensor.
  void set_lod(const std::vector<std::vector<size_t>>& lod) { meta_.lod = lod; }

  /// \brief Returns the data type of the tensor.
  /// \return The data type of the tensor.
96
  DataType dtype() const noexcept override { return meta_.type; }
97 98 99

  /// \brief Returns the data layout of the tensor.
  /// \return The data layout of the tensor.
100
  DataLayout layout() const noexcept override { return meta_.layout; }
101 102 103

  /// \brief Returns the data place of the tensor.
  /// \return The data place of the tensor.
104
  const Place& place() const override { return storage_->place(); }
105 106 107 108 109 110 111

  /// \brief Returns the meta information of the tensor.
  /// \return The meta information of the tensor.
  const DenseTensorMeta& meta() const noexcept { return meta_; }

  /// \brief Test whether the metadata is valid.
  /// \return Whether the metadata is valid.
112
  bool valid() const noexcept override { return meta_.valid(); }
113 114 115

  /// \brief Test whether the storage is allocated.
  /// return Whether the storage is allocated.
116 117 118
  bool initialized() const override {
    return storage_ != nullptr && storage_->data() != nullptr;
  }
119 120 121 122 123

  /// \brief Check if storage is shared with other objects.
  /// \return Whether the storage is shared with other objects.
  bool IsSharedWith(const DenseTensor& b) const;

石晓伟 已提交
124 125 126
  /// \brief Change the dims information in the metadata. If the new size is
  /// inconsistent with the original value, the storage area will be released
  /// to avoid wrong access.
127
  /// \param dims The new dims of the dense tensor.
石晓伟 已提交
128 129 130 131 132 133
  void Resize(const DDim& dims);

  /// \brief Change the dims information in the metadata.
  /// \param dims The new dims of the dense tensor. The product of the dims
  /// elements must be consistent with the original value.
  void set_dims(const DDim& dims);
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

  /// \brief Returns the actual storage size occupied by tensor, may be larger
  /// than its shape dims.
  /// \return The actual storage size occupied by tensor.
  size_t memory_size() const { return storage_->size(); }

  /// \brief Check that the storage area is large enough to hold the data of the
  /// metadata size, and throw an exception if the conditions are not met.
  void check_memory_size() const;

  /// \brief Release the storage area for other purposes. Because of the
  /// destruction of encapsulation, we do not support two dense tensors directly
  /// sharing the same intrusive pointer.
  /// \return The rvalue of instrusize pointer releated to the released storage.
  intrusive_ptr<Storage> release() { return std::move(storage_); }

  /// \brief Get the mutable data pointer value of type T.
  /// Memory allocation may occur when calling this interface:
  /// 1. When the storage size is not enough to meet the current shape of the
  /// data.
  /// \return The mutable data pointer value of type T.
  template <typename T>
  T* mutable_data();

  /// \brief Get the mutable data pointer value of raw type.
  /// Memory allocation may occur when calling this interface:
  /// 1. When the storage size is not enough to meet the current shape of the
  /// data.
  /// 2. When more request_bytes parameters are used to reserve the data
  /// storage.
  /// param request_bytes The bytes to reserve the data storage.
  /// \return The mutable data pointer value of type T.
  void* mutable_data(size_t request_bytes = 0);

  /// \brief Get the const data pointer value of type T.
  /// \return The const data pointer value of type T.
  template <typename T>
  const T* data() const;

  /// \brief Get the const data pointer value of raw type.
  /// \return The const data pointer value of raw type.
  const void* data() const;

177 178 179
 private:
  friend class CompatibleDenseTensorUtils;

180 181 182 183 184 185
 private:
  DenseTensorMeta meta_;
  intrusive_ptr<Storage> storage_;
};

}  // namespace pten