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

15
#include "paddle/phi/kernels/transfer_layout_kernel.h"
16

17 18
#include "paddle/phi/backends/all_context.h"
#include "paddle/phi/core/kernel_registry.h"
19
#include "paddle/phi/core/visit_type.h"
20
#include "paddle/phi/kernels/funcs/math_function.h"
21

22
namespace phi {
23 24 25 26 27

std::vector<int> GetAxis(const DataLayout& from, const DataLayout& to) {
  PADDLE_ENFORCE_NE(
      from,
      to,
28
      phi::errors::InvalidArgument(
29 30 31 32 33 34
          "Layout transform should transform between different layout."));
  if (from == DataLayout::NCHW && to == DataLayout::NHWC) {
    return {0, 2, 3, 1};
  } else if (from == DataLayout::NHWC && to == DataLayout::NCHW) {
    return {0, 3, 1, 2};
  } else {
35
    PADDLE_THROW(phi::errors::InvalidArgument("Unsupported layout transform."));
36 37 38 39 40 41 42 43
  }
}

template <typename T, typename Context>
void CastDataLayout(const Context& dev_ctx,
                    const DenseTensor& x,
                    const std::vector<int>& axis,
                    DenseTensor* out) {
44
  funcs::Transpose<Context, T, 4> trans4;
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
  trans4(dev_ctx, x, out, axis);
}

template <typename Context>
void TransferLayoutKernel(const Context& dev_ctx,
                          const DenseTensor& x,
                          DataLayout dst_layout,
                          DenseTensor* out) {
  auto src_dim = x.dims();

  auto axis = GetAxis(x.layout(), dst_layout);

  std::vector<int64_t> dst_dim;
  dst_dim.resize(axis.size());
  for (size_t i = 0; i < axis.size(); i++) {
    dst_dim[i] = src_dim[axis[i]];
  }

63
  out->ResizeAndAllocate(phi::make_ddim(dst_dim));
64 65 66 67 68 69

  PD_VISIT_ALL_TYPES(x.dtype(), "CastDataLayout", ([&] {
                       CastDataLayout<data_t, Context>(dev_ctx, x, axis, out);
                     }));
}

70
}  // namespace phi
71

72
PD_REGISTER_GENERAL_KERNEL(phi_transfer_layout,
73 74
                           CPU,
                           ALL_LAYOUT,
75
                           phi::TransferLayoutKernel<phi::CPUContext>,
76
                           ALL_DTYPE) {}