/* 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" #include "paddle/fluid/framework/selected_rows.h" #include "paddle/fluid/operators/jit/kernels.h" namespace paddle { namespace operators { template class SGDOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext &ctx) const override { const auto *learning_rate = ctx.Input("LearningRate"); const auto *param_var = ctx.InputVar("Param"); const auto *grad_var = ctx.InputVar("Grad"); if (param_var->IsType()) { const auto *param = ctx.Input("Param"); auto *param_out = ctx.Output("ParamOut"); // Actually, all tensors are LoDTensor except SelectedRows. if (grad_var->IsType()) { const auto *grad = ctx.Input("Grad"); auto sz = param_out->numel(); PADDLE_ENFORCE_EQ(param->numel(), sz); PADDLE_ENFORCE_EQ(grad->numel(), sz); jit::sgd_attr_t attr(1, sz, 1, sz, 1); const T *lr = learning_rate->data(); const T *param_data = param->data(); const T *grad_data = grad->data(); int64_t rows_idx = 0; T *out_data = param_out->mutable_data(ctx.GetPlace()); auto sgd = jit::KernelFuncs, platform::CPUPlace>::Cache().At( attr); sgd(lr, param_data, grad_data, &rows_idx, out_data, &attr); } else if (grad_var->IsType()) { // TODO(qijun): In Sparse SGD operator, in-place update is enforced. // This manual optimization brings difficulty to track data dependency. // It's better to find a more elegant solution. PADDLE_ENFORCE_EQ(param, param_out); const auto *grad = ctx.Input("Grad"); auto &grad_rows = grad->rows(); // for distributed training, a sparse var may be empty, // just skip updating. if (grad_rows.size() == 0) { return; } auto out_dims = param_out->dims(); PADDLE_ENFORCE_EQ(grad->height(), out_dims[0]); auto &grad_value = grad->value(); const T *param_data = param->data(); const T *grad_data = grad_value.data(); const T *lr = learning_rate->data(); const int64_t *rows_data = grad_rows.data(); T *out_data = param_out->mutable_data(ctx.GetPlace()); jit::sgd_attr_t attr; attr.param_height = out_dims[0]; attr.param_width = param_out->numel() / attr.param_height; attr.grad_height = grad_rows.size(); // note: it is not grad->height() attr.grad_width = grad_value.numel() / attr.grad_height; attr.selected_rows_size = grad_rows.size(); PADDLE_ENFORCE_EQ(attr.grad_width, attr.param_width); auto sgd = jit::KernelFuncs, platform::CPUPlace>::Cache().At( attr); sgd(lr, param_data, grad_data, rows_data, out_data, &attr); } else { PADDLE_THROW("Unsupported Variable Type of Grad"); } } else if (param_var->IsType()) { PADDLE_ENFORCE(grad_var->IsType(), "when param " "is SelectedRows, gradient should also be SelectedRows"); const auto ¶m = param_var->Get(); auto *param_out = ctx.Output("ParamOut"); const auto &grad = grad_var->Get(); // for distributed training, a sparse var may be empty, // just skip updating. if (grad.rows().size() == 0) { return; } auto param_row_width = param.value().dims()[1]; auto grad_row_width = grad.value().dims()[1]; VLOG(4) << " param rows: " << param.rows().size() << " param memory rows: " << param.value().dims()[0] << " grad rows: " << grad.rows().size() << " grad memory rows: " << grad.value().dims()[0]; PADDLE_ENFORCE_EQ(param_row_width, grad_row_width, "param_row should have the same size with grad_row"); const auto *lr = learning_rate->data(); const auto *grad_data = grad.value().data(); auto *out_data = param_out->mutable_value()->data(); for (size_t i = 0; i < grad.rows().size(); i++) { int64_t id_index = param_out->AutoGrownIndex(grad.rows()[i], false); PADDLE_ENFORCE_GE(id_index, static_cast(0), "id should be in the table"); for (int64_t j = 0; j < grad_row_width; j++) { out_data[id_index * grad_row_width + j] -= lr[0] * grad_data[i * grad_row_width + j]; } } } else { PADDLE_THROW("Unsupported Variable Type of Parameter"); } } }; } // namespace operators } // namespace paddle