reshape_kernel.cc 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//   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.

#include "paddle/pten/kernels/reshape_kernel.h"
#include "paddle/pten/backends/all_context.h"
#include "paddle/pten/core/kernel_registry.h"
#include "paddle/pten/infermeta/unary.h"
#include "paddle/pten/kernels/copy_kernel.h"
#include "paddle/pten/kernels/funcs/common_shape.h"

namespace pten {

24
template <typename Context>
25 26 27 28
void ReshapeKernel(const Context& dev_ctx,
                   const DenseTensor& x,
                   const ScalarArray& shape,
                   DenseTensor* out) {
29
  auto out_meta = InferMetaFromVecValue(x.meta(), shape.GetData());
30
  if (x.initialized() && x.Holder() == out->Holder()) {
31
    out->ResizeAndAllocate(out_meta.dims);
32 33
    return;
  }
34 35 36

  out->Resize(x.dims());
  out->mutable_data(x.place());
37
  pten::Copy(dev_ctx, x, false, out);
38
  out->Resize(out_meta.dims);
39 40 41
  out->ResetLoD(x.lod());
}

42 43
template <typename Context>
void ReshapeWithXShape(const Context& dev_ctx,
44 45 46 47 48
                       const DenseTensor& x,
                       const ScalarArray& shape,
                       DenseTensor* xshape,
                       DenseTensor* out) {
  funcs::SetXShape(x, xshape);
49
  ReshapeKernel(dev_ctx, x, shape, out);
50 51 52 53
}

}  // namespace pten

54 55 56 57 58
PT_REGISTER_GENERAL_KERNEL(reshape,
                           CPU,
                           ALL_LAYOUT,
                           pten::ReshapeKernel<pten::CPUContext>,
                           ALL_DTYPE) {}
59 60 61 62 63 64 65
PT_REGISTER_GENERAL_KERNEL(reshape_with_xshape,
                           CPU,
                           ALL_LAYOUT,
                           pten::ReshapeWithXShape<pten::CPUContext>,
                           ALL_DTYPE) {}

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
66 67 68 69 70
PT_REGISTER_GENERAL_KERNEL(reshape,
                           GPU,
                           ALL_LAYOUT,
                           pten::ReshapeKernel<pten::GPUContext>,
                           ALL_DTYPE) {}
71 72 73 74 75 76 77 78
PT_REGISTER_GENERAL_KERNEL(reshape_with_xshape,
                           GPU,
                           ALL_LAYOUT,
                           pten::ReshapeWithXShape<pten::GPUContext>,
                           ALL_DTYPE) {}
#endif

#ifdef PADDLE_WITH_XPU
79 80 81 82 83
PT_REGISTER_GENERAL_KERNEL(reshape,
                           XPU,
                           ALL_LAYOUT,
                           pten::ReshapeKernel<pten::XPUContext>,
                           ALL_DTYPE) {}
84 85 86 87 88 89
PT_REGISTER_GENERAL_KERNEL(reshape_with_xshape,
                           XPU,
                           ALL_LAYOUT,
                           pten::ReshapeWithXShape<pten::XPUContext>,
                           ALL_DTYPE) {}
#endif