/* 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/operators/math/cross_entropy.h" #include "paddle/fluid/operators/math/softmax.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; template using EigenMatrix = framework::EigenMatrix; template class SoftmaxWithCrossEntropyKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { PADDLE_ENFORCE(platform::is_cpu_place(context.GetPlace()), "This kernel only runs on CPU."); const Tensor* logits = context.Input("Logits"); const Tensor* labels = context.Input("Label"); Tensor* softmax = context.Output("Softmax"); Tensor* loss = context.Output("Loss"); softmax->mutable_data(context.GetPlace()); loss->mutable_data(context.GetPlace()); // reshape to 2D tensor int rank = logits->dims().size(); Tensor logits_2d = framework::ReshapeToMatrix(*logits, rank - 1); Tensor labels_2d = framework::ReshapeToMatrix(*labels, rank - 1); Tensor loss_2d = framework::ReshapeToMatrix(*loss, rank - 1); Tensor softmax_2d = framework::ReshapeToMatrix(*softmax, rank - 1); int axis_dim = logits->dims()[rank - 1]; auto& dev_ctx = context.template device_context(); math::SoftmaxFunctor()( dev_ctx, axis_dim, &logits_2d, &softmax_2d); math::CrossEntropyFunctor()( dev_ctx, &loss_2d, &softmax_2d, &labels_2d, context.Attr("soft_label"), context.Attr("ignore_index")); } }; template class SoftmaxWithCrossEntropyGradKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { const Tensor* out_grad = context.Input(framework::GradVarName("Loss")); const Tensor* labels = context.Input("Label"); Tensor* logit_grad = context.Output(framework::GradVarName("Logits")); logit_grad->ShareDataWith(*context.Input("Softmax")); int rank = logit_grad->dims().size(); const int class_num = logit_grad->dims()[rank - 1]; // reshape to 2d Tensor logit_grad_2d = framework::ReshapeToMatrix(*logit_grad, rank - 1); Tensor out_grad_2d = framework::ReshapeToMatrix(*out_grad, rank - 1); auto out_grad_mat = EigenMatrix::From(out_grad_2d); auto logit_grad_mat = EigenMatrix::From(logit_grad_2d); auto& place = *context.template device_context() .eigen_device(); if (context.Attr("soft_label")) { Tensor labels_2d = framework::ReshapeToMatrix(*labels, rank - 1); auto lbl_mat = EigenMatrix::From(labels_2d); logit_grad_mat.device(place) = out_grad_mat.broadcast(Eigen::DSizes(1, class_num)) * (logit_grad_mat - lbl_mat); } else { logit_grad_mat.device(place) = logit_grad_mat * out_grad_mat.broadcast(Eigen::DSizes(1, class_num)); const int batch_size = logit_grad_2d.dims()[0]; const int64_t* label_data = labels->data(); T* logit_grad_data = logit_grad->data(); const T* out_grad_data = out_grad->data(); for (int i = 0; i < batch_size; ++i) { logit_grad_data[i * class_num + label_data[i]] -= out_grad_data[i]; } } } }; } // namespace operators } // namespace paddle