gather_kernel.cc 2.9 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 24 25 26 27 28 29 30 31
// 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/kernels/gather_kernel.h"

#include "paddle/phi/backends/xpu/enforce_xpu.h"
#include "paddle/phi/core/kernel_registry.h"

namespace phi {

template <typename T, typename Context>
void GatherKernel(const Context& dev_ctx,
                  const DenseTensor& x,
                  const DenseTensor& index,
                  const Scalar& axis,
                  DenseTensor* out) {
  auto axis_v = axis.to<int>();
  const auto& index_type = index.dtype();

  dev_ctx.template Alloc<T>(out);
32
  if (x.numel() == 0 || index.numel() == 0) return;
33 34 35 36 37 38 39 40 41 42 43

  const auto index_dims = index.dims();
  if (index_dims.size() == 2) {
    PADDLE_ENFORCE_EQ(
        index_dims[1],
        1,
        phi::errors::InvalidArgument(
            "The last dim of index should be 1 when it is 2D, but we get %d",
            index_dims[1]));
  } else {
    PADDLE_ENFORCE_EQ(
44 45
        index_dims.size() == 1 || index_dims.size() == 0,
        true,
46
        phi::errors::InvalidArgument(
47
            "The index should be 0D, 1D, when it is not 2D, but we get %d",
48 49 50 51 52 53 54 55 56 57 58
            index_dims.size()));
  }
  std::vector<int> xshape(x.dims().size());
  for (int i = 0; i < x.dims().size(); ++i) {
    xshape[i] = x.dims()[i];
  }

  using XPUType = typename XPUTypeTrait<T>::Type;

  int r = XPU_SUCCESS;
  if (index_type == DataType::INT32) {
59 60 61 62 63 64 65 66
    r = xpu::gather<XPUType, int>(
        dev_ctx.x_context(),
        reinterpret_cast<const XPUType*>(x.data<T>()),
        index.data<int>(),
        reinterpret_cast<XPUType*>(out->data<T>()),
        xshape,
        index.dims().size() == 0 ? 1 : index.dims()[0],
        axis_v);
67 68 69 70 71 72 73
  } else {
    r = xpu::gather<XPUType, int64_t>(
        dev_ctx.x_context(),
        reinterpret_cast<const XPUType*>(x.data<T>()),
        index.data<int64_t>(),
        reinterpret_cast<XPUType*>(out->data<T>()),
        xshape,
74
        index.dims().size() == 0 ? 1 : index.dims()[0],
75 76 77 78 79 80 81 82 83 84 85
        axis_v);
  }
  PADDLE_ENFORCE_EQ(
      r,
      xpu::Error_t::SUCCESS,
      phi::errors::External(
          "XPU gather kernel return wrong value[%d %s]", r, XPUAPIErrorMsg[r]));
}

}  // namespace phi

86 87 88 89 90 91 92 93 94
PD_REGISTER_KERNEL(gather,
                   XPU,
                   ALL_LAYOUT,
                   phi::GatherKernel,
                   float,
                   phi::dtype::float16,
                   int,
                   int64_t,
                   bool) {}