// Copyright (c) 2023 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/scatter_nd_add_kernel.h" #include "paddle/phi/backends/xpu/enforce_xpu.h" #include "paddle/phi/core/kernel_registry.h" namespace phi { template void ScatterNdAddKernel(const Context &dev_ctx, const DenseTensor &x, const DenseTensor &index, const DenseTensor &updates, DenseTensor *out) { using XPUType = typename XPUTypeTrait::Type; if (out && out->numel() == 0) { dev_ctx.template Alloc(out); return; } const XPUType *x_ptr = reinterpret_cast(x.data()); const XPUType *updates_ptr = reinterpret_cast(updates.data()); dev_ctx.template Alloc(out); XPUType *out_ptr = reinterpret_cast(out->data()); int r = xpu::copy(dev_ctx.x_context(), x_ptr, out_ptr, x.numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "copy"); if (updates.numel() == 0) return; if (index.numel() == 0) { int64_t index_dims_size = index.dims().size(); int64_t loop_time = index_dims_size == 0 ? 1 : common::product(slice_ddim(index.dims(), 0, index_dims_size - 1)); for (int64_t i = 0; i < loop_time; i++) { r = xpu::broadcast_add(dev_ctx.x_context(), updates_ptr + out->numel() * i, out_ptr, out_ptr, {out->numel()}, {out->numel()}); PADDLE_ENFORCE_XDNN_SUCCESS(r, "copy"); } return; } const DataType index_type = index.dtype(); bool index_type_match = index_type == DataType::INT32 || index_type == DataType::INT64; PADDLE_ENFORCE_EQ(index_type_match, true, common::errors::InvalidArgument( "Index holds the wrong type, it holds [%s], but " "desires to be [%s] or [%s].", index_type, DataType::INT32, DataType::INT64)); auto x_shape = vectorize(x.dims()); auto index_shape = vectorize(index.dims()); if (index_shape.size() == 1) { index_shape.insert(index_shape.begin(), 1); } xpu::VectorParam x_vec = { x_shape.data(), static_cast(x_shape.size()), nullptr}; int64_t index_size = index.numel(); if (index_type == DataType::INT32) { auto index_data = const_cast(index.data()); xpu::VectorParam index_vec{nullptr, index_size, index_data}; r = xpu::scatter_nd(dev_ctx.x_context(), nullptr, updates_ptr, out_ptr, index_vec, x_vec, index_shape, false); } else { auto index_data = const_cast(index.data()); xpu::VectorParam index_vec{nullptr, index_size, index_data}; r = xpu::scatter_nd(dev_ctx.x_context(), nullptr, updates_ptr, out_ptr, index_vec, x_vec, index_shape, false); } PADDLE_ENFORCE_XDNN_SUCCESS(r, "scatter_nd_add"); } } // namespace phi PD_REGISTER_KERNEL(scatter_nd_add, XPU, ALL_LAYOUT, phi::ScatterNdAddKernel, phi::float16, phi::bfloat16, float, int, int64_t) {}