84 lines
2.7 KiB
Plaintext
84 lines
2.7 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/roll_grad_kernel.h"
|
|
|
|
#include "paddle/phi/core/kernel_registry.h"
|
|
#include "paddle/phi/kernels/gpu/roll_kernel_impl.h"
|
|
|
|
namespace phi {
|
|
|
|
template <typename T, typename Context>
|
|
void RollGradKernel(const Context& dev_ctx,
|
|
const DenseTensor& x,
|
|
const DenseTensor& out_grad,
|
|
const IntArray& shifts,
|
|
const std::vector<int64_t>& axis,
|
|
DenseTensor* x_grad) {
|
|
auto* out_grad_data = out_grad.data<T>();
|
|
if (x_grad && x_grad->numel() == 0) {
|
|
dev_ctx.template Alloc<T>(x_grad);
|
|
return;
|
|
}
|
|
T* x_grad_data = dev_ctx.template Alloc<T>(x_grad);
|
|
|
|
auto shifts_data = shifts.GetData();
|
|
int rank = shifts_data.size();
|
|
|
|
int64_t numel = out_grad.numel();
|
|
auto input_dim = out_grad.dims();
|
|
auto stride_dim = common::stride(input_dim);
|
|
|
|
std::vector<int64_t> strides(rank), sizes(rank);
|
|
if (axis.size() == 0) {
|
|
strides[0] = 1;
|
|
sizes[0] = numel;
|
|
shifts_data[0] = ((-shifts_data[0]) % numel + numel) % numel;
|
|
} else {
|
|
for (int i = 0; i < rank; i++) {
|
|
int dim = axis[i] >= 0 ? axis[i] : axis[i] + input_dim.size();
|
|
int64_t size = input_dim[dim];
|
|
if (size != 0) {
|
|
shifts_data[i] = ((-shifts_data[i]) % size + size) % size;
|
|
strides[i] = stride_dim[dim];
|
|
sizes[i] = size;
|
|
}
|
|
}
|
|
}
|
|
|
|
LaunchRollKernel<T, Context>(dev_ctx,
|
|
out_grad_data,
|
|
x_grad_data,
|
|
rank,
|
|
numel,
|
|
shifts_data,
|
|
strides,
|
|
sizes);
|
|
}
|
|
|
|
} // namespace phi
|
|
|
|
PD_REGISTER_KERNEL(roll_grad,
|
|
GPU,
|
|
ALL_LAYOUT,
|
|
phi::RollGradKernel,
|
|
phi::float16,
|
|
phi::bfloat16,
|
|
float,
|
|
double,
|
|
int,
|
|
int64_t,
|
|
phi::complex64,
|
|
phi::complex128) {}
|