/* 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/fluid/operators/optimizers/rmsprop_op.h" #include "paddle/fluid/operators/npu_op_runner.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; using LoDTensor = framework::LoDTensor; template class RMSPROPNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext &ctx) const override { auto *grad_var = ctx.InputVar("Grad"); auto *param_out = ctx.Output("ParamOut"); auto *moment_out = ctx.Output("MomentOut"); auto *mean_square_out = ctx.Output("MeanSquareOut"); param_out->mutable_data(ctx.GetPlace()); moment_out->mutable_data(ctx.GetPlace()); mean_square_out->mutable_data(ctx.GetPlace()); auto epsilon = static_cast(ctx.Attr("epsilon")); auto rho = static_cast(ctx.Attr("decay")); auto momentum = static_cast(ctx.Attr("momentum")); auto *p_tensor = ctx.Input("Param"); auto *ms_tensor = ctx.Input("MeanSquare"); auto *lr_tensor = ctx.Input("LearningRate"); auto *mom_tensor = ctx.Input("Moment"); bool centered = ctx.Attr("centered"); auto stream = ctx.template device_context() .stream(); if (grad_var->IsType()) { auto *grad_tensor = ctx.Input("Grad"); if (centered) { framework::NPUAttributeMap attr_input = {{"use_locking", false}}; const Tensor *rho_tensor = nullptr; const Tensor *momentum_tensor = nullptr; const Tensor *epsilon_tensor = nullptr; Tensor rho_tmp(framework::proto::VarType::FP32); rho_tmp.mutable_data({1}, ctx.GetPlace()); FillNpuTensorWithConstant(&rho_tmp, rho); rho_tensor = &rho_tmp; Tensor momentum_tmp(framework::proto::VarType::FP32); momentum_tmp.mutable_data({1}, ctx.GetPlace()); FillNpuTensorWithConstant(&momentum_tmp, momentum); momentum_tensor = &momentum_tmp; Tensor epsilon_tmp(framework::proto::VarType::FP32); epsilon_tmp.mutable_data({1}, ctx.GetPlace()); FillNpuTensorWithConstant(&epsilon_tmp, epsilon); epsilon_tensor = &epsilon_tmp; auto *mg_tensor = ctx.Input("MeanGrad"); auto *mean_grad_out = ctx.Output("MeanGradOut"); mean_grad_out->mutable_data(ctx.GetPlace()); const auto &runner_applycenterrmsprop = NpuOpRunner( std::string("ApplyCenteredRMSPropD"), {*p_tensor, *mg_tensor, *ms_tensor, *mom_tensor, *lr_tensor, *rho_tensor, *momentum_tensor, *epsilon_tensor, *grad_tensor}, {*param_out, *mean_grad_out, *mean_square_out, *moment_out}, {attr_input}); runner_applycenterrmsprop.Run(stream); } else { framework::NPUAttributeMap attr_input = { {"rho", rho}, {"momentum", momentum}, {"epsilon", epsilon}}; const auto &runner_applyrmsprop = NpuOpRunner( std::string("ApplyRMSPropD"), {*p_tensor, *ms_tensor, *mom_tensor, *lr_tensor, *grad_tensor}, {*param_out, *mean_square_out, *moment_out}, {attr_input}); runner_applyrmsprop.Run(stream); } } else { PADDLE_ENFORCE_EQ(false, true, platform::errors::PermissionDenied( "Unsupported Variable Type of Grad " "in RmspropOp. Excepted LodTensor, " "But received [%s]", paddle::framework::ToTypeName(grad_var->Type()))); } } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_NPU_KERNEL( rmsprop, ops::RMSPROPNPUKernel)