tensor_method.cc 8.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
// clang-format off
16
#include "paddle/phi/api/include/tensor.h"
17

18
#include "paddle/phi/common/int_array.h"
19 20 21
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/tensor_base.h"

22
#include "paddle/phi/api/include/context_pool.h"
23
#include "paddle/phi/api/include/sparse_api.h"
24 25
#include "paddle/phi/api/lib/api_gen_utils.h"
#include "paddle/phi/api/lib/kernel_dispatch.h"
26
#include "paddle/phi/core/tensor_utils.h"
27
#include "paddle/phi/infermeta/unary.h"
28
// clang-format off
29

30 31 32 33
namespace paddle {
namespace experimental {
// declare cast api
Tensor cast(const Tensor &x, DataType out_dtype);
34
Tensor copy_to(const Tensor &x, const Place &place, bool blocking);
35 36 37 38 39

Tensor Tensor::cast(DataType target_type) const {
  return experimental::cast(*this, target_type);
}

40
Tensor Tensor::copy_to(const Place &place, bool blocking) const {
41
  return experimental::copy_to(*this, place, blocking);
42 43 44
}

template <typename T>
45
Tensor Tensor::copy_to(const Place &target_place) const {
46 47 48 49 50 51
  LOG_FIRST_N(WARNING, 1)
      << "The Tensor's `copy_to` method is deprecated since version "
         "2.3, and will be removed in version 2.4, please use "
         "`copy_to` method without template argument instead. "
         "reason: copying a Tensor to another device does not need "
         "to specify the data type template argument.";
52
  return copy_to(target_place, /*blocking=*/false);
53 54 55
}

template PADDLE_API Tensor
56
Tensor::copy_to<float>(const Place &target_place) const;
57
template PADDLE_API Tensor
58
Tensor::copy_to<double>(const Place &target_place) const;
59
template PADDLE_API Tensor
60
Tensor::copy_to<int64_t>(const Place &target_place) const;
61
template PADDLE_API Tensor
62
Tensor::copy_to<int32_t>(const Place &target_place) const;
63
template PADDLE_API Tensor
64
Tensor::copy_to<uint8_t>(const Place &target_place) const;
65
template PADDLE_API Tensor
66
Tensor::copy_to<int8_t>(const Place &target_place) const;
67
template PADDLE_API Tensor
68
Tensor::copy_to<int16_t>(const Place &target_place) const;
69
template PADDLE_API Tensor
70
Tensor::copy_to<bool>(const Place &target_place) const;
71
template PADDLE_API Tensor
72 73 74 75 76
Tensor::copy_to<phi::dtype::complex<float>>(const Place &target_place) const;
template PADDLE_API Tensor
Tensor::copy_to<phi::dtype::complex<double>>(const Place &target_place) const;
template PADDLE_API Tensor
Tensor::copy_to<phi::dtype::float16>(const Place &target_place) const;
77

78 79 80
void Tensor::copy_(const Tensor &src,
                   const phi::Place &target_place,
                   bool blocking) {
81
  if (!src.initialized()) {
82
    VLOG(8) << "Src is empty, skip copy";
83 84
    return;
  }
85 86 87
  // Prepare copy kernel key and outputs
  auto kernel_key_set = ParseKernelKeyByInputArgs(src);
  KernelType kernel_type = ParseKernelTypeByInputArgs(src);
88
  VLOG(3) << "Deep copy Tensor from " << src.name() << " to " << name();
89
  if (initialized()) {
90 91
    PADDLE_ENFORCE_EQ(dtype(),
                      src.dtype(),
J
Jiabin Yang 已提交
92
                      phi::errors::PreconditionNotMet(
93 94 95 96 97 98
                          "Tensor %s has different data type with Tensor %s, "
                          "Tensor Copy cannot be performed!",
                          name(),
                          src.name()));
    PADDLE_ENFORCE_EQ(impl()->type_info().id(),
                      src.impl()->type_info().id(),
J
Jiabin Yang 已提交
99
                      phi::errors::PreconditionNotMet(
100 101 102 103
                          "Tensor %s has different type with Tensor %s, Tensor "
                          "Copy cannot be performed!",
                          name(),
                          src.name()));
104
    PADDLE_ENFORCE_EQ(target_place,
C
Chen Weihang 已提交
105
                      place(),
J
Jiabin Yang 已提交
106
                      phi::errors::PreconditionNotMet(
107 108 109
                          "Place is different of dst tensor and args %s, which "
                          "current tensor holds %s "
                          "Copy cannot be performed!",
J
Jiabin Yang 已提交
110
                          target_place,
C
Chen Weihang 已提交
111 112 113
                          place()));
    kernel_key_set.backend_set = kernel_key_set.backend_set |
                                 BackendSet(phi::TransToPhiBackend(place()));
114 115 116 117
  } else {
    // Deep Copy AutoGrad info from src to self.
    *autograd_meta_ = *(src.autograd_meta_);
  }
118 119 120
  kernel_key_set.backend_set =
      kernel_key_set.backend_set |
      BackendSet(phi::TransToPhiBackend(target_place));
121
  auto kernel_key = kernel_key_set.GetHighestPriorityKernelKey();
122 123 124 125 126
  auto place = phi::TransToPhiPlace(kernel_key.backend());
  auto& pool = paddle::experimental::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetMutable(
      place.GetType() == target_place.GetType() ? target_place : place);

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
  Backend kernel_backend = Backend::UNDEFINED;
  DataLayout kernel_layout = DataLayout::UNDEFINED;
  DataType kernel_data_type = DataType::UNDEFINED;

  if (kernel_backend == Backend::UNDEFINED ||
      kernel_layout == DataLayout::UNDEFINED ||
      kernel_data_type == DataType::UNDEFINED) {
    if (kernel_backend == Backend::UNDEFINED) {
      kernel_backend = kernel_key.backend();
    }
    if (kernel_layout == DataLayout::UNDEFINED) {
      kernel_layout = kernel_key.layout();
    }
    if (kernel_data_type == DataType::UNDEFINED) {
      kernel_data_type = kernel_key.dtype();
    }
  }

  if (kernel_type == KernelType::DENSE_TENSOR_KENREL) {
    SetKernelOutput(kernel_backend, this);
    phi::MetaTensor meta_out(impl_.get());
    phi::UnchangedInferMeta(
        MakeMetaTensor(
            *(std::static_pointer_cast<phi::DenseTensor>(src.impl_))),
        &meta_out);
152 153 154 155 156
    phi::Copy(*dev_ctx,
              (*(std::static_pointer_cast<phi::DenseTensor>(src.impl_))),
              target_place,
              blocking,
              static_cast<phi::DenseTensor *>(impl_.get()));
157 158 159 160 161 162 163
  } else if (kernel_type == KernelType::SELECTED_ROWS_KENREL) {
    SetSelectedRowsKernelOutput(kernel_backend, this);
    phi::MetaTensor meta_out(impl_.get());
    phi::UnchangedInferMeta(
        MakeMetaTensor(
            *(std::static_pointer_cast<phi::SelectedRows>(src.impl_))),
        &meta_out);
164 165 166 167 168
    phi::Copy(*dev_ctx,
              (*(std::static_pointer_cast<phi::SelectedRows>(src.impl_))),
              target_place,
              blocking,
              static_cast<phi::SelectedRows *>(impl_.get()));
169
  } else if (kernel_type == KernelType::SPARSE_COO_KERNEL) {
170 171 172 173 174 175 176
    SetSparseKernelOutput(this, TensorType::SPARSE_COO);
    // TODO(zhangkaihuo) add sparse infer_meta
    phi::Copy(*dev_ctx,
              (*(std::static_pointer_cast<phi::SparseCooTensor>(src.impl_))),
              target_place,
              blocking,
              static_cast<phi::SparseCooTensor *>(impl_.get()));
177
  } else if (kernel_type == KernelType::SPARSE_CSR_KERNEL) {
178 179 180 181 182 183 184
    SetSparseKernelOutput(this, TensorType::SPARSE_CSR);
    // TODO(zhangkaihuo) add sparse infer_meta
    phi::Copy(*dev_ctx,
              (*(std::static_pointer_cast<phi::SparseCsrTensor>(src.impl_))),
              target_place,
              blocking,
              static_cast<phi::SparseCsrTensor *>(impl_.get()));
185
  } else {
J
Jiabin Yang 已提交
186
    PADDLE_THROW(phi::errors::InvalidArgument(
187 188
        "We currently only support dense tensor copy for now and if u need to "
        "copy selected rows please raise a issue."));
189 190 191
  }
}

192 193 194 195 196 197 198 199 200 201 202 203
Tensor Tensor::to_sparse_coo(const int64_t sparse_dim) const {
  return experimental::sparse::to_sparse_coo(*this, sparse_dim);
}

Tensor Tensor::to_sparse_csr() const {
  return experimental::sparse::to_sparse_csr(*this);
}

Tensor Tensor::to_dense() const {
  return experimental::sparse::to_dense(*this);
}

204 205
}  // namespace experimental
}  // namespace paddle