/* Copyright (c) 2016 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/fluid/framework/eigen.h" #include "paddle/fluid/framework/op_registry.h" namespace paddle { namespace operators { template class LarsMomentumOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto param_out = ctx.MultiOutput("ParamOut"); auto velocity_out = ctx.MultiOutput("VelocityOut"); auto param = ctx.MultiInput("Param"); auto velocity = ctx.MultiInput("Velocity"); auto learning_rate = ctx.MultiInput("LearningRate"); auto grad = ctx.MultiInput("Grad"); auto weight_decay_arr = ctx.Attr>("lars_weight_decay"); T mu = static_cast(ctx.Attr("mu")); T lars_coeff = ctx.Attr("lars_coeff"); T epsilon = ctx.Attr("epsilon"); int op_num = param.size(); for (int i = 0; i < op_num; ++i) { auto* lr = learning_rate[i]->data(); T lars_weight_decay = weight_decay_arr[i]; param_out[i]->mutable_data(ctx.GetPlace()); velocity_out[i]->mutable_data(ctx.GetPlace()); auto p_out = framework::EigenVector::Flatten(*(param_out[i])); auto v_out = framework::EigenVector::Flatten(*(velocity_out[i])); auto p = framework::EigenVector::Flatten(*(param[i])); auto v = framework::EigenVector::Flatten(*(velocity[i])); auto g = framework::EigenVector::Flatten(*(grad[i])); framework::Tensor p_norm_t, g_norm_t; p_norm_t.Resize({1}); g_norm_t.Resize({1}); p_norm_t.mutable_data(ctx.GetPlace()); g_norm_t.mutable_data(ctx.GetPlace()); auto ep_norm = framework::EigenScalar::From(p_norm_t); auto eg_norm = framework::EigenScalar::From(g_norm_t); ep_norm = p.square().sum().sqrt(); eg_norm = g.square().sum().sqrt(); T local_lr = lr[0]; if (lars_weight_decay > 0 && ep_norm(0) > 0 && eg_norm(0) > 0) { local_lr = lr[0] * lars_coeff * ep_norm(0) / (eg_norm(0) + lars_weight_decay * ep_norm(0) + epsilon); } v_out = v * mu + local_lr * (g + lars_weight_decay * p); p_out = p - v_out; } } }; } // namespace operators } // namespace paddle