/* 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/softsign_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 SoftsignOp : public UnaryElementWiseOp> { public: explicit SoftsignOp(OpKernelConstruction* context) : UnaryElementWiseOp>(context) {} void Operate(OpKernelContext* context, const Tensor& input, Tensor* output) { functor::Softsign functor; functor(context->eigen_device(), input.flat(), output->flat()); } }; template class SoftsignGradOp : public BinaryElementWiseOp> { public: explicit SoftsignGradOp(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 SoftsignOp() // OUTPUT: // gradients to backprop template void Operate(OpKernelContext* context, const Tensor& g, const Tensor& a, Tensor* output) { OperateNoTemplate(context, g, a, output); } }; template void SoftsignGradOp::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::SoftsignGrad functor; functor(context->eigen_device(), g.flat(), a.flat(), output->flat()); } #define REGISTER_KERNELS(type) \ REGISTER_KERNEL_BUILDER( \ Name("Softsign").Device(DEVICE_CPU).TypeConstraint("T"), \ SoftsignOp); \ REGISTER_KERNEL_BUILDER( \ Name("SoftsignGrad").Device(DEVICE_CPU).TypeConstraint("T"), \ SoftsignGradOp); 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 Softsign::operator()( \ const GPUDevice& d, typename TTypes::ConstTensor features, \ typename TTypes::Tensor activations); \ extern template struct Softsign; \ \ template <> \ void SoftsignGrad::operator()( \ const GPUDevice& d, typename TTypes::ConstTensor gradients, \ typename TTypes::ConstTensor features, \ typename TTypes::Tensor backprops); \ extern template struct SoftsignGrad; TF_CALL_GPU_NUMBER_TYPES(DECLARE_GPU_SPEC); } // namespace functor // Registration of the GPU implementations. #define REGISTER_GPU_KERNELS(type) \ REGISTER_KERNEL_BUILDER( \ Name("Softsign").Device(DEVICE_GPU).TypeConstraint("T"), \ SoftsignOp); \ REGISTER_KERNEL_BUILDER( \ Name("SoftsignGrad").Device(DEVICE_GPU).TypeConstraint("T"), \ SoftsignGradOp); TF_CALL_GPU_NUMBER_TYPES(REGISTER_GPU_KERNELS); #undef REGISTER_GPU_KERNELS #endif // GOOGLE_CUDA } // namespace tensorflow