/* Copyright 2015 The TensorFlow 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. ==============================================================================*/ // See docs in ../ops/nn_ops.cc. #define EIGEN_USE_THREADS #include "tensorflow/core/kernels/softplus_op.h" #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/numeric_op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/lib/core/errors.h" namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; typedef Eigen::GpuDevice GPUDevice; template class SoftplusOp : public UnaryElementWiseOp> { public: explicit SoftplusOp(OpKernelConstruction* context) : UnaryElementWiseOp>(context) {} void Operate(OpKernelContext* context, const Tensor& input, Tensor* output) { functor::Softplus functor; functor(context->eigen_device(), input.flat(), output->flat()); } }; template class SoftplusGradOp : public BinaryElementWiseOp> { public: explicit SoftplusGradOp(OpKernelConstruction* context) : BinaryElementWiseOp>(context) {} void OperateNoTemplate(OpKernelContext* context, const Tensor& g, const Tensor& a, Tensor* output); // INPUTS: // g (gradients): backpropagated gradients // a (inputs): inputs that were passed to SoftplusOp() // OUTPUT: // gradients to backprop template void Operate(OpKernelContext* context, const Tensor& g, const Tensor& a, Tensor* output) { OperateNoTemplate(context, g, a, output); } }; template void SoftplusGradOp::OperateNoTemplate(OpKernelContext* context, const Tensor& g, const Tensor& a, Tensor* output) { OP_REQUIRES(context, a.IsSameSize(g), errors::InvalidArgument("g and a must be the same size")); functor::SoftplusGrad functor; functor(context->eigen_device(), g.flat(), a.flat(), output->flat()); } #define REGISTER_KERNELS(type) \ REGISTER_KERNEL_BUILDER( \ Name("Softplus").Device(DEVICE_CPU).TypeConstraint("T"), \ SoftplusOp); \ REGISTER_KERNEL_BUILDER( \ Name("SoftplusGrad").Device(DEVICE_CPU).TypeConstraint("T"), \ SoftplusGradOp); TF_CALL_FLOAT_TYPES(REGISTER_KERNELS); #undef REGISTER_KERNELS #if GOOGLE_CUDA // Forward declarations of the functor specializations for GPU. namespace functor { #define DECLARE_GPU_SPEC(T) \ template <> \ void Softplus::operator()( \ const GPUDevice& d, typename TTypes::ConstTensor features, \ typename TTypes::Tensor activations); \ extern template struct Softplus; \ \ template <> \ void SoftplusGrad::operator()( \ const GPUDevice& d, typename TTypes::ConstTensor gradients, \ typename TTypes::ConstTensor features, \ typename TTypes::Tensor backprops); \ extern template struct SoftplusGrad; TF_CALL_GPU_NUMBER_TYPES(DECLARE_GPU_SPEC); } // namespace functor // Registration of the GPU implementations. #define REGISTER_GPU_KERNELS(type) \ REGISTER_KERNEL_BUILDER( \ Name("Softplus").Device(DEVICE_GPU).TypeConstraint("T"), \ SoftplusOp); \ REGISTER_KERNEL_BUILDER( \ Name("SoftplusGrad").Device(DEVICE_GPU).TypeConstraint("T"), \ SoftplusGradOp); TF_CALL_GPU_NUMBER_TYPES(REGISTER_GPU_KERNELS); #undef REGISTER_GPU_KERNELS #endif // GOOGLE_CUDA } // namespace tensorflow