/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. 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/operators/type_alias.h" namespace paddle { namespace operators { template class RowwiseAddKernel : public OpKernel { public: void Compute(const ExecutionContext& context) const override { auto out = context.Output(0); out->mutable_data(context.GetPlace()); auto input = EigenMatrix::From(*context.Input(0)); auto bias = EigenVector::From(*context.Input(1)); auto output = EigenMatrix::From(*out); const int bias_size = bias.dimension(0); const int rest_size = input.size() / bias_size; Eigen::DSizes one_d(input.size()); Eigen::DSizes bcast(rest_size); output.reshape(one_d).device(*(context.GetEigenDevice())) = input.reshape(one_d) + bias.broadcast(bcast).reshape(one_d); } }; template class RowwiseAddGradKernel : public OpKernel { public: void Compute(const ExecutionContext& context) const override { auto XGrad = context.Output(0); auto bGrad = context.Output(1); XGrad->mutable_data(context.GetPlace()); bGrad->mutable_data(context.GetPlace()); // I, O, OG => [X, b], [Out], [OutGrad] auto OutGrad = EigenMatrix::From(*context.Input(3)); EigenMatrix::From(*XGrad).device(*(context.GetEigenDevice())) = OutGrad; // https://eigen.tuxfamily.org/dox/unsupported/TensorBase_8h_source.html EigenVector::Flatten(*bGrad).device(*(context.GetEigenDevice())) = OutGrad.cumsum(1); // colwise add } }; } // namespace operators } // namespace paddle