/* Copyright (c) 2021 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/uniform_inplace_grad_kernel.h" #include "paddle/phi/core/kernel_registry.h" namespace phi { template void UniformInplaceGradKernel(const Context& dev_ctx, const DenseTensor& out_grad UNUSED, float min UNUSED, float max UNUSED, int seed UNUSED, int diag_num UNUSED, int diag_step UNUSED, float diag_val UNUSED, DenseTensor* x_grad) { if (x_grad) { auto* data = dev_ctx.template Alloc(x_grad); std::fill(data, data + x_grad->numel(), T(0)); } } } // namespace phi PD_REGISTER_KERNEL(uniform_inplace_grad, CPU, ALL_LAYOUT, phi::UniformInplaceGradKernel, float, double) {}