/* 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 #include #include "lite/backends/x86/cpu_info.h" #include "lite/utils/paddle_enforce.h" namespace paddle { namespace lite { namespace x86 { namespace math { namespace detail { #define SIGMOID_THRESHOLD_MIN -40.0 #define SIGMOID_THRESHOLD_MAX 13.0 #define EXP_MAX_INPUT 40.0 enum ActivationType { kSigmoid, kReLU, kTanh, kIdentity, }; inline ActivationType GetActivationType(const std::string &type) { if (type == "sigmoid") { return ActivationType::kSigmoid; } else if (type == "relu") { return ActivationType::kReLU; } else if (type == "tanh") { return ActivationType::kTanh; } else if (type == "identity" || type == "") { return ActivationType::kIdentity; } LOG(ERROR) << "Not support type " << type; // PADDLE_ENFORCE(false, "Not support type %s", type); // PADDLE_THROW("Not support type %s.", type); } namespace forward { template T Identity(const T a) { return a; } template T Relu(const T a) { return a > static_cast(0.0) ? a : static_cast(0.0); } template T Sigmoid(const T a) { const T min = SIGMOID_THRESHOLD_MIN; const T max = SIGMOID_THRESHOLD_MAX; T tmp = (a < min) ? min : ((a > max) ? max : a); return static_cast(1.0) / (static_cast(1.0) + exp(-tmp)); } template T Tanh(const T a) { T tmp = -2.0 * a; tmp = (tmp > EXP_MAX_INPUT) ? EXP_MAX_INPUT : tmp; return (2.0 / (1.0 + exp(tmp))) - 1.0; } } // namespace forward namespace backward { template T Identity(const T a, const T b) { return a; } template T Relu(const T a, const T b) { return a * (b > 0.0 ? 1.0 : 0.0); } template T Sigmoid(const T a, const T b) { return a * b * (1.0 - b); } template T Tanh(const T a, const T b) { return a * (1.0 - b * b); } } // namespace backward template struct Active { typedef T (*Act)(T); typedef T (*ActGrad)(T, T); }; static Active::Act kActFloat[] = {&forward::Sigmoid, &forward::Relu, &forward::Tanh, &forward::Identity}; static Active::ActGrad kActGradFloat[] = {&backward::Sigmoid, &backward::Relu, &backward::Tanh, &backward::Identity}; static Active::Act kActDouble[] = {&forward::Sigmoid, &forward::Relu, &forward::Tanh, &forward::Identity}; static Active::ActGrad kActGradDouble[] = {&backward::Sigmoid, &backward::Relu, &backward::Tanh, &backward::Identity}; namespace forward { inline float activation(float a, int index) { return kActFloat[index](a); } inline double activation(double a, int index) { return kActDouble[index](a); } } // namespace forward namespace backward { inline float activation(float a, float b, int index) { return kActGradFloat[index](a, b); } inline double activation(double a, double b, int index) { return kActGradDouble[index](a, b); } } // namespace backward #ifdef __AVX__ namespace forward { namespace avx { __m256 Relu(const __m256 a); __m256 Sigmoid(const __m256 a); __m256 Tanh(const __m256 a); __m256 Identity(const __m256 a); } // namespace avx } // namespace forward namespace backward { namespace avx { __m256 Relu(const __m256 a, const __m256 b); __m256 Sigmoid(const __m256 a, const __m256 b); __m256 Tanh(const __m256 a, const __m256 b); __m256 Identity(const __m256 a, const __m256 b); } // namespace avx } // namespace backward static Active<__m256>::Act kActAvx[] = {&forward::avx::Sigmoid, &forward::avx::Relu, &forward::avx::Tanh, &forward::avx::Identity}; static Active<__m256>::ActGrad kActGradAvx[] = {&backward::avx::Sigmoid, &backward::avx::Relu, &backward::avx::Tanh, &backward::avx::Identity}; namespace forward { inline __m256 activation(__m256 a, int index) { return kActAvx[index](a); } } // namespace forward namespace backward { inline __m256 activation(__m256 a, __m256 b, int index) { return kActGradAvx[index](a, b); } } // namespace backward #endif } // namespace detail } // namespace math } // namespace x86 } // namespace lite } // namespace paddle