meta_tensor.cc 10.1 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

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. */

15
#include "paddle/phi/core/meta_tensor.h"
16

17 18
#include "glog/logging.h"

Z
zhangbo9674 已提交
19
#include "paddle/fluid/ir/dialect/paddle_dialect/ir/pd_meta_tensor.h"
20
#include "paddle/phi/core/dense_tensor.h"
21
#include "paddle/phi/core/distributed/auto_parallel/dist_tensor.h"
22 23
#include "paddle/phi/core/enforce.h"
#include "paddle/phi/core/selected_rows.h"
J
Jack Zhou 已提交
24 25
#include "paddle/phi/core/string_tensor.h"
#include "paddle/phi/core/string_tensor_utils.h"
26
#include "paddle/phi/core/tensor_utils.h"
27

28
namespace phi {
29

30 31 32 33 34 35
static inline void ValidCheck(const MetaTensor& meta_tensor) {
  PADDLE_ENFORCE_EQ(meta_tensor.initialized(),
                    true,
                    phi::errors::InvalidArgument(
                        "The current MetaTensor is not initialized."));
}
36

37 38 39 40
int64_t MetaTensor::numel() const {
  ValidCheck(*this);
  return tensor_->numel();
}
41

42 43
DDim MetaTensor::dims() const {
  ValidCheck(*this);
44 45 46 47 48
  if (phi::SelectedRows::classof(tensor_)) {
    return static_cast<SelectedRows*>(tensor_)->GetCompleteDims();
  } else {
    return tensor_->dims();
  }
49
}
50

W
wanghuancoder 已提交
51 52 53 54 55 56 57 58
DDim MetaTensor::strides() const {
  ValidCheck(*this);
  if (dynamic_cast<DenseTensor*>(tensor_)) {
    return dynamic_cast<DenseTensor*>(tensor_)->strides();
  }
  return DDim();
}

59 60 61 62 63 64 65 66 67
DataType MetaTensor::dtype() const {
  ValidCheck(*this);
  return tensor_->dtype();
}

DataLayout MetaTensor::layout() const {
  ValidCheck(*this);
  return tensor_->layout();
}
68 69

void MetaTensor::set_dims(const DDim& dims) {
70
  ValidCheck(*this);
71
  if (phi::DenseTensor::classof(tensor_)) {
W
wanghuancoder 已提交
72 73 74 75 76 77
    auto meta =
        DenseTensorUtils::GetMutableMeta(static_cast<DenseTensor*>(tensor_));
    meta->dims = dims;
    if (!strided_kernel_used_) {
      meta->strides = meta->calc_strides(dims);
    }
J
Jack Zhou 已提交
78 79 80
  } else if (phi::StringTensor::classof(tensor_)) {
    StringTensorUtils::GetMutableMeta(static_cast<StringTensor*>(tensor_))
        ->dims = dims;
81
  } else if (phi::SelectedRows::classof(tensor_)) {
82
    static_cast<SelectedRows*>(tensor_)->set_height(dims[0]);
Z
zhangkaihuo 已提交
83 84 85 86 87 88
  } else if (phi::SparseCooTensor::classof(tensor_)) {
    DenseTensorUtils::GetMutableMeta(static_cast<SparseCooTensor*>(tensor_))
        ->dims = dims;
  } else if (phi::SparseCsrTensor::classof(tensor_)) {
    DenseTensorUtils::GetMutableMeta(static_cast<SparseCsrTensor*>(tensor_))
        ->dims = dims;
89
  } else if (phi::distributed::DistTensor::classof(tensor_)) {
90
    static_cast<distributed::DistTensor*>(tensor_)->set_dims(dims);
91
  } else {
92
    PADDLE_THROW(phi::errors::Unimplemented(
93 94 95 96
        "Unsupported setting dims for `%s`.", tensor_->type_info().name()));
  }
}

W
wanghuancoder 已提交
97 98 99 100 101 102 103 104
void MetaTensor::set_strides(const DDim& strides) {
  ValidCheck(*this);
  if (dynamic_cast<DenseTensor*>(tensor_)) {
    DenseTensorUtils::GetMutableMeta(dynamic_cast<DenseTensor*>(tensor_))
        ->strides = strides;
  }
}

105
void MetaTensor::set_dtype(DataType dtype) {
106
  ValidCheck(*this);
107
  if (phi::DenseTensor::classof(tensor_)) {
108
    DenseTensorUtils::GetMutableMeta(static_cast<DenseTensor*>(tensor_))
109
        ->dtype = dtype;
J
Jack Zhou 已提交
110 111
  } else if (phi::StringTensor::classof(tensor_)) {
    // No need to set dtype
112
  } else if (phi::SelectedRows::classof(tensor_)) {
113 114 115
    DenseTensorUtils::GetMutableMeta(
        static_cast<SelectedRows*>(tensor_)->mutable_value())
        ->dtype = dtype;
Z
zhangkaihuo 已提交
116 117 118 119 120 121
  } else if (phi::SparseCooTensor::classof(tensor_)) {
    DenseTensorUtils::GetMutableMeta(static_cast<SparseCooTensor*>(tensor_))
        ->dtype = dtype;
  } else if (phi::SparseCsrTensor::classof(tensor_)) {
    DenseTensorUtils::GetMutableMeta(static_cast<SparseCsrTensor*>(tensor_))
        ->dtype = dtype;
122
  } else if (phi::distributed::DistTensor::classof(tensor_)) {
123
    // skip, DistTensor no need to set dtype
124
  } else {
125
    PADDLE_THROW(phi::errors::Unimplemented(
126 127 128 129 130
        "Unsupported settting dtype for `%s`.", tensor_->type_info().name()));
  }
}

void MetaTensor::set_layout(DataLayout layout) {
131
  ValidCheck(*this);
132
  if (phi::DenseTensor::classof(tensor_)) {
W
wanghuancoder 已提交
133 134 135 136 137 138
    auto meta =
        DenseTensorUtils::GetMutableMeta(static_cast<DenseTensor*>(tensor_));
    meta->layout = layout;
    if (!strided_kernel_used_) {
      meta->strides = meta->calc_strides(meta->dims);
    }
J
Jack Zhou 已提交
139 140
  } else if (phi::StringTensor::classof(tensor_)) {
    // No need to set layout
141
  } else if (phi::SelectedRows::classof(tensor_)) {
W
wanghuancoder 已提交
142 143 144 145 146 147
    auto meta = DenseTensorUtils::GetMutableMeta(
        static_cast<SelectedRows*>(tensor_)->mutable_value());
    meta->layout = layout;
    if (!strided_kernel_used_) {
      meta->strides = meta->calc_strides(meta->dims);
    }
Z
zhangkaihuo 已提交
148 149 150 151 152 153
  } else if (phi::SparseCooTensor::classof(tensor_)) {
    DenseTensorUtils::GetMutableMeta(static_cast<SparseCooTensor*>(tensor_))
        ->layout = layout;
  } else if (phi::SparseCsrTensor::classof(tensor_)) {
    DenseTensorUtils::GetMutableMeta(static_cast<SparseCsrTensor*>(tensor_))
        ->layout = layout;
154
  } else if (phi::distributed::DistTensor::classof(tensor_)) {
155
    // skip, DistTensor no need to set dtype
156
  } else {
157
    PADDLE_THROW(phi::errors::Unimplemented(
158 159 160 161 162
        "Unsupported settting layout for `%s`.", tensor_->type_info().name()));
  }
}

void MetaTensor::share_lod(const MetaTensor& meta_tensor) {
163 164
  ValidCheck(*this);
  ValidCheck(meta_tensor);
Z
zhangkaihuo 已提交
165
  if (phi::SparseCooTensor::classof(tensor_) ||
166 167
      phi::SparseCsrTensor::classof(tensor_) ||
      phi::distributed::DistTensor::classof(tensor_)) {
Z
zhangkaihuo 已提交
168 169
    return;
  }
170
  if (meta_tensor.lod().empty()) {
H
hong 已提交
171 172 173
    // no need share
    return;
  }
174
  if (phi::DenseTensor::classof(tensor_)) {
175 176
    DenseTensorUtils::GetMutableMeta(static_cast<DenseTensor*>(tensor_))->lod =
        meta_tensor.lod();
177
  } else if (phi::SelectedRows::classof(tensor_)) {
178 179 180
    DenseTensorUtils::GetMutableMeta(
        static_cast<SelectedRows*>(tensor_)->mutable_value())
        ->lod = meta_tensor.lod();
181
  } else {
182
    PADDLE_THROW(
183 184
        phi::errors::Unimplemented("Unsupported sharing lod inplace for `%s`.",
                                   tensor_->type_info().name()));
185 186 187
  }
}

188
void MetaTensor::share_meta(const MetaTensor& meta_tensor) {
189
  ValidCheck(*this);
Y
YuanRisheng 已提交
190
  if (phi::DenseTensor::classof(tensor_) ||
Z
zhangkaihuo 已提交
191 192
      phi::SelectedRows::classof(tensor_) ||
      phi::SparseCooTensor::classof(tensor_) ||
193 194
      phi::SparseCsrTensor::classof(tensor_) ||
      phi::distributed::DistTensor::classof(tensor_)) {
Y
YuanRisheng 已提交
195
    share_dims(meta_tensor);
196 197 198
    set_dtype(meta_tensor.dtype());
    set_layout(meta_tensor.layout());
    share_lod(meta_tensor);
199
  } else {
200
    PADDLE_THROW(phi::errors::Unimplemented(
201
        "Unsupported sharing meta for `%s`.", tensor_->type_info().name()));
202 203 204
  }
}

Y
YuanRisheng 已提交
205 206 207 208 209 210
TensorBase* MetaTensor::tensor() const { return tensor_; }

bool MetaTensor::is_dense() const { return DenseTensor::classof(tensor_); }
bool MetaTensor::is_selected_rows() const {
  return SelectedRows::classof(tensor_);
}
211 212 213
bool MetaTensor::is_dist() const {
  return distributed::DistTensor::classof(tensor_);
}
Y
YuanRisheng 已提交
214 215
bool MetaTensor::is_tensor_array() const { return false; }

216 217 218 219
bool MetaTensor::is_same_tensor(const MetaTensor& meta_tensor) const {
  return tensor_ != nullptr && tensor_ == meta_tensor.tensor();
}

Y
YuanRisheng 已提交
220
void MetaTensor::share_dims(const MetaTensor& meta_tensor) {
221
  ValidCheck(*this);
Y
YuanRisheng 已提交
222 223
  bool is_dense_tensor = phi::DenseTensor::classof(tensor_);
  bool is_selected_rows = phi::SelectedRows::classof(tensor_);
Z
zhangkaihuo 已提交
224 225
  bool is_sparse_coo = phi::SparseCooTensor::classof(tensor_);
  bool is_sparse_csr = phi::SparseCsrTensor::classof(tensor_);
226
  bool is_dist_tensor = phi::distributed::DistTensor::classof(tensor_);
227 228
  if (is_dense_tensor || is_selected_rows || is_sparse_coo || is_sparse_csr ||
      is_dist_tensor) {
Y
YuanRisheng 已提交
229
    if (is_selected_rows) {
C
Chen Weihang 已提交
230
      const auto in_tensor_base = meta_tensor.tensor();
Y
YuanRisheng 已提交
231 232 233 234 235 236 237 238 239
      PADDLE_ENFORCE_EQ(
          phi::SelectedRows::classof(in_tensor_base),
          true,
          errors::InvalidArgument("The input MetaTensor is SelectedRows, but "
                                  "the output MetaTensor is not this type."));
      auto* selected_rows_out = static_cast<SelectedRows*>(tensor_);
      auto* selected_rows_in = static_cast<SelectedRows*>(in_tensor_base);
      selected_rows_out->set_rows(selected_rows_in->rows());
      selected_rows_out->set_height(selected_rows_in->height());
W
wanghuancoder 已提交
240 241 242 243 244 245
      auto meta = DenseTensorUtils::GetMutableMeta(
          static_cast<SelectedRows*>(tensor_)->mutable_value());
      meta->dims = selected_rows_in->mutable_value()->dims();
      if (!strided_kernel_used_) {
        meta->strides = meta->calc_strides(meta->dims);
      }
246 247
    } else {
      set_dims(meta_tensor.dims());
Y
YuanRisheng 已提交
248 249 250 251 252 253 254
    }
  } else {
    PADDLE_THROW(phi::errors::Unimplemented(
        "Unsupported sharing dims for `%s`.", tensor_->type_info().name()));
  }
}

W
wanghuancoder 已提交
255 256 257 258 259 260 261
void MetaTensor::share_strides(const MetaTensor& meta_tensor) {
  ValidCheck(*this);
  if (phi::DenseTensor::classof(tensor_)) {
    set_strides(meta_tensor.strides());
  }
}

262 263
bool MetaTensor::initialized() const { return tensor_ != nullptr; }

264 265 266 267 268 269 270
// Private Member Methods

const LoD& MetaTensor::lod() const {
  if (phi::DenseTensor::classof(tensor_)) {
    return static_cast<DenseTensor*>(tensor_)->lod();
  } else if (phi::SelectedRows::classof(tensor_)) {
    return static_cast<SelectedRows*>(tensor_)->value().lod();
Z
zhangkaihuo 已提交
271 272 273 274
  } else if (phi::SparseCooTensor::classof(tensor_)) {
    return static_cast<SparseCooTensor*>(tensor_)->non_zero_elements().lod();
  } else if (phi::SparseCsrTensor::classof(tensor_)) {
    return static_cast<SparseCsrTensor*>(tensor_)->non_zero_elements().lod();
Z
zhangbo9674 已提交
275 276
  } else if (paddle::dialect::IrMetaTensor::classof(tensor_)) {
    return static_cast<paddle::dialect::IrMetaTensor*>(tensor_)->lod();
277 278 279 280 281 282
  } else {
    PADDLE_THROW(phi::errors::Unimplemented("Unsupported getting lod of `%s`.",
                                            tensor_->type_info().name()));
  }
}

283
}  // namespace phi