Files
paddlepaddle--paddle/paddle/phi/kernels/cpu/repeat_interleave_grad_kernel.cc
2026-07-13 12:40:42 +08:00

127 lines
4.6 KiB
C++

// 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/repeat_interleave_grad_kernel.h"
#include "paddle/phi/backends/context_pool.h"
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/core/utils/data_type.h"
#include "paddle/phi/kernels/cpu/index_select_impl.h"
#include "paddle/phi/kernels/funcs/repeat_tensor2index_tensor.h"
namespace phi {
template <typename T, typename Context>
void RepeatInterleaveWithTensorIndexGradKernel(
const Context& dev_ctx,
const DenseTensor& x UNUSED,
const DenseTensor& repeats_tensor,
const DenseTensor& out_grad,
int dim,
int64_t output_size UNUSED,
DenseTensor* x_grad) {
auto input_dim = x_grad->dims();
if (dim < 0) {
dim += input_dim.size();
}
DenseTensor index;
PADDLE_ENFORCE_EQ(repeats_tensor.dims()[0] == x_grad->dims()[dim],
true,
common::errors::InvalidArgument(
"The length of Input(RepeatsTensor) must be the "
"same as length of Input(X) in axis. "
"But received: [%s], required: [%d].",
repeats_tensor.dims()[0],
x_grad->dims()[dim]));
const auto& index_type = repeats_tensor.dtype();
bool index_type_match =
index_type == DataType::INT32 || index_type == DataType::INT64;
PADDLE_ENFORCE_EQ(index_type_match,
true,
common::errors::InvalidArgument(
"Input(Repeats) holds the wrong type, it holds %s, but "
"desires to be %s or %s",
DataTypeToString(index_type),
DataTypeToString(DataType::INT32),
DataTypeToString(DataType::INT64)));
DeviceContextPool::Instance().Get(repeats_tensor.place());
if (index_type == DataType::INT32) {
funcs::RepeatsTensor2IndexTensorFunctor<Context, int>()(
dev_ctx, repeats_tensor, &index);
IndexSelectGradInner<Context, T, int>(
dev_ctx, out_grad, index, x_grad, dim);
} else if (index_type == DataType::INT64) {
funcs::RepeatsTensor2IndexTensorFunctor<Context, int64_t>()(
dev_ctx, repeats_tensor, &index);
IndexSelectGradInner<Context, T, int64_t>(
dev_ctx, out_grad, index, x_grad, dim);
}
}
template <typename T, typename Context>
void RepeatInterleaveGradKernel(const Context& dev_ctx,
const DenseTensor& x UNUSED,
const DenseTensor& out_grad,
int repeats,
int dim,
int64_t output_size UNUSED,
DenseTensor* x_grad) {
if (x_grad && x_grad->numel() == 0) {
dev_ctx.template Alloc<T>(x_grad);
return;
}
auto input_dim = x_grad->dims();
if (dim < 0) {
dim += input_dim.size();
}
DenseTensor index;
int64_t index_size = x_grad->dims()[dim] * repeats;
std::vector<int> index_vec(index_size);
for (int i = 0; i < x_grad->dims()[dim]; i++) {
std::fill_n(index_vec.begin() + i * repeats, repeats, i);
}
index.Resize({index_size});
TensorFromVector<int>(index_vec, dev_ctx, &index);
const DenseTensor index_copy = index;
IndexSelectGradInner<Context, T, int>(
dev_ctx, out_grad, index_copy, x_grad, dim);
}
} // namespace phi
PD_REGISTER_KERNEL(repeat_interleave_with_tensor_index_grad,
CPU,
ALL_LAYOUT,
phi::RepeatInterleaveWithTensorIndexGradKernel,
float,
double,
int,
int64_t,
phi::bfloat16) {}
PD_REGISTER_KERNEL(repeat_interleave_grad,
CPU,
ALL_LAYOUT,
phi::RepeatInterleaveGradKernel,
float,
double,
int,
int64_t,
phi::bfloat16) {}