dense_tensor.h 6.2 KB
Newer Older
1
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
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

17 18 19 20 21
#include "paddle/phi/core/allocator.h"
#include "paddle/phi/core/storage.h"
#include "paddle/phi/core/stream.h"
#include "paddle/phi/core/tensor_base.h"
#include "paddle/phi/core/tensor_meta.h"
22

23 24 25 26 27 28
/* @jim19930609: Move to MKLDNN_Tensor in the future
    */
#ifdef PADDLE_WITH_MKLDNN
#include "dnnl.hpp"
#endif

29
namespace phi {
30

31
class DenseTensorUtils;
32

33 34 35 36 37 38 39 40 41 42 43
/// \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.
44
  DenseTensor(Allocator* a, const DenseTensorMeta& meta);
45 46 47 48

  /// \brief Construct a dense tensor and allocate space.
  /// \param a The allocator used to allocate space.
  /// \param meta The meta data of dense tensor.
49
  DenseTensor(Allocator* a, DenseTensorMeta&& meta);
50

51
  DenseTensor(const std::shared_ptr<phi::Allocation>& holder,
52
              const DenseTensorMeta& meta);
53 54 55 56

  /// \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.
57
  // DenseTensor() = default;
58 59 60 61 62

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

63 64
  /// \brief DenseTensor shallow copy constructor.
  DenseTensor(const DenseTensor& other);
65

66 67 68
  /// \brief DenseTensor shallow copy assignment.
  DenseTensor& operator=(const DenseTensor& other);

69 70
  DenseTensor& operator=(DenseTensor&& other);

71 72
  DenseTensor();

73 74 75 76 77 78 79 80 81 82
  /// \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.
83
  int64_t numel() const override;
84 85 86

  /// \brief Returns the dims of the tensor.
  /// \return The dims of the tensor.
87
  const DDim& dims() const noexcept override { return meta_.dims; }
88 89 90

  /// \brief Returns the lod of the tensor.
  /// \return The lod of the tensor.
91
  const LoD& lod() const noexcept { return meta_.lod; }
92 93 94

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

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

  /// \brief Returns the data place of the tensor.
  /// \return The data place of the tensor.
103
  const Place& place() const override;
104 105 106 107 108

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

109 110 111 112 113
  /// \brief Sets the meta information of the tensor. Only when the original
  /// attribute of Tensor is incomplete, can it be reset.
  /// \param meta The meta information of the tensor.
  void set_meta(DenseTensorMeta&& meta);

114 115
  void set_meta(const DenseTensorMeta& meta);

116 117
  /// \brief Test whether the metadata is valid.
  /// \return Whether the metadata is valid.
118
  bool valid() const noexcept override { return meta_.valid(); }
119

120 121
  /// \brief Test whether the allocation is allocated.
  /// return Whether the allocation is allocated.
122
  bool initialized() const override { return holder_ && holder_->ptr(); }
123

124 125 126 127 128 129
  /// \brief Allocate memory with requested size from allocator.
  /// \return The mutable data pointer value of type T.
  void* AllocateFrom(Allocator* allocator,
                     DataType dtype,
                     size_t requested_size = 0) override;

130 131
  /// \brief Check if allocation is shared with other objects.
  /// \return Whether the allocation is shared with other objects.
132 133
  bool IsSharedWith(const DenseTensor& b) const;

134
  /// \brief Change the shape information in the metadata. If the new size is
135
  /// larger than the original value, the allocation area will be reallocated.
136
  /// \param dims The new dims of the dense tensor.
137
  /// \param lod The new lod of the dense tensor.
138
  // void Resize(const DDim& dims);
139 140 141
  void ResizeAndAllocate(const DDim& dims);

  DenseTensor& Resize(const DDim& dims);
142 143 144 145

  /// \brief Change the lod information in the metadata.
  /// \param lod The new lod of the dense tensor.
  void ResetLoD(const LoD& lod);
146

147 148
  /// \brief Returns the actual allocation size occupied by tensor, may be
  /// larger
149
  /// than its shape dims.
150
  /// \return The actual allocation size occupied by tensor.
151
  size_t capacity() const { return holder_->size(); }
152 153 154 155 156 157 158 159 160 161

  /// \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;

162 163 164 165 166
  template <typename T>
  T* data();

  void* data();

167
 private:
168
  friend class DenseTensorUtils;
169

170
 protected:
171
  DenseTensorMeta meta_;
172
  std::shared_ptr<phi::Allocation> holder_;
173

174
#ifndef PADDLE_WITH_CUSTOM_KERNEL
175
#include "paddle/phi/core/dense_tensor.inl"
176
#endif
177
};
178

179
}  // namespace phi