// 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. #pragma once #include "paddle/phi/kernels/decayed_adagrad_kernel.h" #include "paddle/phi/kernels/funcs/eigen/common.h" namespace phi { template void DecayedAdagradDenseKernel(const Context& dev_ctx, const DenseTensor& param_t, const DenseTensor& grad_t, const DenseTensor& moment_t, const DenseTensor& learning_rate, float decay, float epsilon, DenseTensor* param_out_t, DenseTensor* moment_out_t) { dev_ctx.template Alloc(param_out_t); dev_ctx.template Alloc(moment_out_t); auto param = EigenVector::Flatten(param_t); auto grad = EigenVector::Flatten(grad_t); auto moment = EigenVector::Flatten(moment_t); auto lr = EigenVector::Flatten(learning_rate); auto param_out = EigenVector::Flatten(*param_out_t); auto moment_out = EigenVector::Flatten(*moment_out_t); auto& place = *dev_ctx.eigen_device(); moment_out.device(place) = decay * moment + (1 - decay) * grad * grad; Eigen::DSizes m_dsize(moment_out_t->numel()); param_out.device(place) = param - lr.broadcast(m_dsize) * grad / (moment_out.sqrt() + epsilon); } } // namespace phi