/* 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 SigmoidKernel : public OpKernel { public: void Compute(const ExecutionContext& context) const override { auto input = context.Input(0); auto output = context.Output(0); output->mutable_data(context.GetPlace()); EigenVector::Flatten(*output).device( *(context.GetEigenDevice())) = 1.0 / (1.0 + (-1.0 * EigenVector::Flatten(*input)).exp()); } }; template class SigmoidGradKernel : public OpKernel { public: void Compute(const ExecutionContext& context) const override { // TODO(qingqing) maybe a helper funciton is needed fo the name x@GRAD auto y_t = context.Input("Y"); auto dy_t = context.Input("Y@GRAD"); auto dx_t = context.Output("X@GRAD"); dx_t->mutable_data(context.GetPlace()); auto dx = EigenVector::Flatten(*dx_t); auto y = EigenVector::Flatten(*y_t); auto dy = EigenVector::Flatten(*dy_t); dx.device(*(context.GetEigenDevice())) = dy * y * (1. - y); } }; } // namespace operators } // namespace paddle