copy_kernel.cc 2.2 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 16 17
#include "paddle/pten/kernels/copy_kernel.h"

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

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

namespace pten {

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

37 38 39 40 41 42
  VLOG(3) << "TensorCopy " << src.dims() << " from " << src.place() << " to "
          << dst_place;

  dst->Resize(src.dims());
  auto* dst_ptr = dst->mutable_data();

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

51 52
  auto size = src.numel() *
              paddle::framework::SizeOfType(TransToProtoVarType(src.dtype()));
53 54 55 56 57 58 59 60 61 62 63 64 65

  if (paddle::platform::is_cpu_place(src_place) &&
      paddle::platform::is_cpu_place(dst_place)) {
    paddle::memory::Copy(BOOST_GET_CONST(paddle::platform::CPUPlace, dst_place),
                         dst_ptr,
                         BOOST_GET_CONST(paddle::platform::CPUPlace, src_place),
                         src_ptr,
                         size);
  }
}

}  // namespace pten

66 67
PT_REGISTER_GENERAL_KERNEL(
    copy, CPU, ALL_LAYOUT, pten::Copy<pten::CPUContext>, ALL_DTYPE) {}