copy_kernel.cc 1.9 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
#include "paddle/phi/kernels/copy_kernel.h"
16

17 18 19 20
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/common/data_type.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/kernel_registry.h"
21 22 23

// See Note [ Why still include the fluid headers? ]
#include "paddle/fluid/memory/memcpy.h"
24

25
namespace phi {
26

27
// NOTE(chenweihang): blocking is useless in cpu kernel
28 29
template <typename Context>
void Copy(const Context& dev_ctx,
30
          const DenseTensor& src,
31
          Place dst_place,
32 33
          bool blocking,
          DenseTensor* dst) {
34 35 36
  auto* src_ptr = src.data();
  const auto& src_place = src.place();

37
  VLOG(3) << "TensorCopy " << src.dims() << " from " << src.place() << " to "
38
          << src_place;
39

40
  dst->Resize(src.dims());
41
  auto* dst_ptr = dev_ctx.HostAlloc(dst, src.dtype());
42

43
  if (src_ptr == dst_ptr) {
44
    VLOG(3) << "Skip copy the same data async from " << src_place << " to "
45
            << src_place;
46 47 48 49
    return;
  }
  VLOG(4) << "src:" << src_ptr << ", dst:" << dst_ptr;
  CHECK(dst->layout() == src.layout());
50

51
  auto size = src.numel() * paddle::experimental::SizeOf(src.dtype());
52

53 54
  if (paddle::platform::is_cpu_place(src_place)) {
    paddle::memory::Copy(src_place, dst_ptr, src_place, src_ptr, size);
55 56 57
  }
}

58
}  // namespace phi
59

60
PD_REGISTER_GENERAL_KERNEL(
61
    copy, CPU, ALL_LAYOUT, phi::Copy<phi::CPUContext>, ALL_DTYPE) {}