dense_tensor.inl 4.6 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
/* Copyright (c) 2022 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. */

/* --------------------------- */
/*   From framework::Tensor    */
/* --------------------------- */
/* The following members & interfaces were copied from framework::Tensor,
    so as to facilitate the unification of different Tensors

    Will be adjusted/removed/moved in the near future
*/
23

24 25 26
public:
/* @jim19930609: Remove dependency on protobuf after Tensor Unification.
*/
27
explicit DenseTensor(paddle::experimental::DataType dtype);
28 29 30 31

inline bool IsInitialized() const { return holder_ != nullptr; }

template <typename T>
32
T* mutable_data(const phi::Place& place,
33 34 35 36
                size_t requested_size = 0);

template <typename T>
T* mutable_data(const DDim& dims,
37
                const phi::Place& place,
38 39
                size_t requested_size = 0);

40
void* mutable_data(const phi::Place& place,
41
                    paddle::experimental::DataType type,
42 43
                    size_t requested_size = 0);

44
void* mutable_data(const phi::Place& place,
45 46
                    size_t requested_size = 0);

47
void* mutable_data(const phi::Place& place,
48
                    paddle::experimental::DataType type,
49
                    const phi::Stream& stream);
50 51 52

/* @jim19930609: Remove dependency on protobuf after Tensor Unification.
*/
53
paddle::experimental::DataType type() const;
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

// memory size returns the holding memory size in byte.
size_t memory_size() const;

void check_memory_size() const;

void set_layout(const paddle::framework::DataLayout layout);

void clear() {
  holder_.reset();
  meta_.offset = 0;
}

void ShareBufferWith(const DenseTensor& tensor);

void ShareDataTypeWith(const DenseTensor& tensor) {
  meta_.dtype = tensor.meta().dtype;
}

bool IsSharedBufferWith(const DenseTensor& src) const {
  return holder_ && holder_ == src.Holder();
}

77
const std::shared_ptr<phi::Allocation>& Holder() const { return holder_; }
78 79 80 81

void set_offset(size_t offset) { meta_.offset = offset; }
size_t offset() const { return meta_.offset; }

82
std::shared_ptr<phi::Allocation> MoveMemoryHolder() {
83 84 85
  return std::move(holder_);
}

86
void ResetHolder(const std::shared_ptr<phi::Allocation>& holder);
87

88
void ResetHolderWithType(const std::shared_ptr<phi::Allocation>& holder,
89
                        paddle::experimental::DataType type);
90

91
void set_type(paddle::experimental::DataType type);
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118

InplaceVersion& InplaceVersionCounter() {
  return *inplace_version_counter_;
}

/*! The internal of two tensors share the same memory block. */
DenseTensor& ShareDataWith(const DenseTensor& src);

/*! The internal of two tensors share the same inplace version counter. */
DenseTensor& ShareInplaceVersionCounterWith(const DenseTensor& src);

DenseTensor Slice(int64_t begin_idx, int64_t end_idx) const;

std::vector<DenseTensor> Split(int64_t split_size, int64_t axis) const;

std::vector<DenseTensor> Chunk(int64_t chunks, int64_t axis) const;

/* @jim19930609: This is a hack
In general, it is badly designed to fuse MKLDNN-specific objects into a
generic Tensor.
We temporarily leave them here to unblock Tensor Unification progress.
In the final state, we should come up with a MKLDNN_Tensor and move the
following codes there.
*/
#ifdef PADDLE_WITH_MKLDNN

public:
119 120 121 122 123 124 125 126
  dnnl::memory::desc mem_desc() const;

inline void set_mem_desc(const dnnl::memory::desc& mem_desc) {
  mem_desc_ = mem_desc;
  meta_.layout = DataLayout::kMKLDNN;
}

dnnl::memory::format_tag format() const;
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

inline void set_format(const dnnl::memory::format_tag format) {
  format_ = format;
}

#endif

/* ------------------------------ */
/*   From framework::LoDTensor    */
/* ------------------------------ */
/* The following members & interfaces were copied from framework::Tensor,
    so as to facilitate the unification of different Tensors

    Will be adjusted/removed/moved in the near future
*/
public:
explicit DenseTensor(const LoD& lod);

void set_lod(const LoD& lod);

LoD* mutable_lod();

/*
* Get the start offset and end offset of an  element from LoD.
*/
std::pair<size_t, size_t> lod_element(size_t level, size_t elem) const;

size_t NumLevels() const;

size_t NumElements(size_t level = 0) const;