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

#include "paddle/phi/api/lib/tensor_copy.h"
16

Z
zyfncg 已提交
17
#include "paddle/phi/api/include/context_pool.h"
18 19 20 21 22
#include "paddle/phi/api/lib/api_gen_utils.h"
#include "paddle/phi/api/lib/kernel_dispatch.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/core/meta_tensor.h"
23
#include "paddle/phi/core/tensor_utils.h"
24 25 26 27 28
#include "paddle/phi/infermeta/unary.h"

namespace paddle {
namespace experimental {

Z
zyfncg 已提交
29
void copy(const Tensor& src, const Place& place, bool blocking, Tensor* dst) {
30 31 32 33 34
  auto kernel_key_set = ParseKernelKeyByInputArgs(src);
  kernel_key_set.backend_set =
      kernel_key_set.backend_set | BackendSet(phi::TransToPhiBackend(place));
  auto kernel_key = kernel_key_set.GetHighestPriorityKernelKey();

35
  VLOG(6) << "start copy. ";
36

Z
zyfncg 已提交
37 38 39 40
  auto target_place = phi::TransToPhiPlace(kernel_key.backend());
  auto& pool = paddle::experimental::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetMutable(
      target_place.GetType() == place.GetType() ? place : target_place);
41 42 43

  auto dense_x = TensorToDenseTensor(src);

Z
zyfncg 已提交
44
  auto kernel_out = SetKernelOutput(dst);
45 46 47
  phi::MetaTensor meta_out(kernel_out);
  phi::UnchangedInferMeta(*dense_x, &meta_out);

48
  phi::Copy(*dev_ctx, *dense_x, place, blocking, kernel_out);
49

50
  VLOG(6) << "copy finished. ";
51 52 53 54
}

}  // namespace experimental
}  // namespace paddle