144 lines
5.2 KiB
Plaintext
144 lines
5.2 KiB
Plaintext
// 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/index_add_grad_kernel.h"
|
|
|
|
#include "paddle/common/enforce.h"
|
|
#include "paddle/phi/backends/gpu/gpu_info.h"
|
|
#include "paddle/phi/backends/gpu/gpu_launch_config.h"
|
|
#include "paddle/phi/backends/gpu/gpu_primitives.h"
|
|
#include "paddle/phi/core/kernel_registry.h"
|
|
#include "paddle/phi/core/utils/data_type.h"
|
|
#include "paddle/phi/kernels/full_kernel.h"
|
|
#include "paddle/phi/kernels/funcs/math_function.h"
|
|
#include "paddle/phi/kernels/gpu/index_select_impl.h"
|
|
|
|
namespace phi {
|
|
|
|
template <typename T, typename Context>
|
|
void IndexAddGradKernel(const Context& dev_ctx,
|
|
const DenseTensor& index,
|
|
const DenseTensor& add_value,
|
|
const DenseTensor& out_grad,
|
|
int dim,
|
|
DenseTensor* x_grad,
|
|
DenseTensor* add_value_grad) {
|
|
if (out_grad.numel() == 0) {
|
|
if (x_grad) {
|
|
dev_ctx.template Alloc<T>(x_grad);
|
|
}
|
|
if (add_value_grad) {
|
|
Full<T, Context>(dev_ctx, add_value_grad->dims(), 0, add_value_grad);
|
|
}
|
|
return;
|
|
}
|
|
if (index.numel() == 0) {
|
|
if (x_grad) {
|
|
Copy(dev_ctx, out_grad, dev_ctx.GetPlace(), false, x_grad);
|
|
}
|
|
if (add_value_grad) {
|
|
Full<T, Context>(dev_ctx, add_value_grad->dims(), 0, add_value_grad);
|
|
}
|
|
return;
|
|
}
|
|
if (add_value.numel() == 0) {
|
|
if (x_grad) {
|
|
Copy(dev_ctx, out_grad, dev_ctx.GetPlace(), false, x_grad);
|
|
}
|
|
if (add_value_grad) {
|
|
dev_ctx.template Alloc<T>(add_value_grad);
|
|
}
|
|
return;
|
|
}
|
|
// x.shape == out.shape in index_grad op
|
|
auto input_dim = out_grad.dims();
|
|
auto add_value_dim = add_value.dims();
|
|
dim = dim >= 0 ? dim : dim + input_dim.size();
|
|
auto stride_dim = common::stride(input_dim);
|
|
int64_t stride = stride_dim[dim];
|
|
int64_t size = add_value_dim[dim];
|
|
int64_t delta = input_dim[dim] - size;
|
|
const auto& index_type = index.dtype();
|
|
|
|
bool index_type_match =
|
|
index_type == DataType::INT64 || index_type == DataType::INT32;
|
|
PADDLE_ENFORCE_EQ(index_type_match,
|
|
true,
|
|
common::errors::InvalidArgument(
|
|
"Input(Index) holds the wrong type, it holds %s, but "
|
|
"desires to be %s or %s",
|
|
index_type,
|
|
DataType::INT32,
|
|
DataType::INT64));
|
|
|
|
int64_t numel = add_value.numel();
|
|
if (numel == 0) {
|
|
return;
|
|
}
|
|
auto stream = dev_ctx.stream();
|
|
|
|
// get x_grad: copy out_grad to x_grad.
|
|
if (x_grad) {
|
|
Copy(dev_ctx, out_grad, dev_ctx.GetPlace(), false, x_grad);
|
|
}
|
|
|
|
// get add_value_grad: index_select(out_grad, index, axis)
|
|
if (add_value_grad) {
|
|
auto* output_grad_data = out_grad.data<T>();
|
|
auto* add_value_grad_data = dev_ctx.template Alloc<T>(add_value_grad);
|
|
unsigned int block_dim = PADDLE_CUDA_NUM_THREADS;
|
|
const uint64_t grid_x = (numel + block_dim - 1) / block_dim;
|
|
PADDLE_ENFORCE_LE_UINT32_MAX(grid_x, "grid.x");
|
|
dim3 grid_dim = dim3(static_cast<uint32_t>(grid_x));
|
|
backends::gpu::LimitGridDim(dev_ctx, &grid_dim);
|
|
|
|
if (index_type == DataType::INT64) {
|
|
const int64_t* index_data = index.data<int64_t>();
|
|
index_select_cuda_kernel<T, int64_t>
|
|
<<<grid_dim, block_dim, 0, stream>>>(output_grad_data,
|
|
add_value_grad_data,
|
|
index_data,
|
|
numel,
|
|
stride,
|
|
size,
|
|
delta,
|
|
input_dim[dim]);
|
|
} else {
|
|
const int* index_data = index.data<int>();
|
|
index_select_cuda_kernel<T, int>
|
|
<<<grid_dim, block_dim, 0, stream>>>(output_grad_data,
|
|
add_value_grad_data,
|
|
index_data,
|
|
numel,
|
|
stride,
|
|
size,
|
|
delta,
|
|
input_dim[dim]);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace phi
|
|
|
|
PD_REGISTER_KERNEL(index_add_grad,
|
|
GPU,
|
|
ALL_LAYOUT,
|
|
phi::IndexAddGradKernel,
|
|
float,
|
|
double,
|
|
phi::float16,
|
|
phi::bfloat16,
|
|
int,
|
|
int64_t) {}
|