/* Copyright (c) 2018 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 #include "common/enforce.h" #include "common/types.h" #if defined(__ARM_NEON__) || defined(__ARM_NEON) #include #include "operators/math/math_func_neon.h" #endif namespace paddle_mobile { namespace operators { namespace math { #define SIGMOID_THRESHOLD_MIN -40.0 #define SIGMOID_THRESHOLD_MAX 13.0 #define EXP_MAX_INPUT 40.0 inline ActivationType GetActivationType(const std::string &type) { if (type == "sigmoid") { return ActivationType::SIGMOID; } else if (type == "relu") { return ActivationType::RELU; } else if (type == "tanh") { return ActivationType::TANH; } else if (type == "identity" || type == "") { return ActivationType::IDENTITY; } PADDLE_MOBILE_THROW_EXCEPTION("Not support activation type."); } inline ActivationType GetActivationType(const int type) { if (type == 0) { return ActivationType::IDENTITY; } else if (type == 1) { return ActivationType::SIGMOID; } else if (type == 2) { return ActivationType::TANH; } else if (type == 3) { return ActivationType::RELU; } PADDLE_MOBILE_THROW_EXCEPTION("Not support activation type."); } #if defined(__ARM_NEON__) || defined(__ARM_NEON) template inline float32x4_t vActiveq_f32(const float32x4_t &x) { return x; } template <> inline float32x4_t vActiveq_f32(const float32x4_t &x) { float32x4_t __zero = vdupq_n_f32(0.f); return vmaxq_f32(x, __zero); } template <> inline float32x4_t vActiveq_f32(const float32x4_t &x) { float32x4_t __zero = vdupq_n_f32(0.f); float32x4_t __six = vdupq_n_f32(6.f); return vminq_f32(vmaxq_f32(x, __zero), __six); } template <> inline float32x4_t vActiveq_f32(const float32x4_t &x) { float32x4_t __one = vdupq_n_f32(1.f); float32x4_t __x = vnegq_f32(x); __x = exp_ps(__x); __x = vaddq_f32(__x, __one); float32x4_t __out = vrecpeq_f32(__x); return vmulq_f32(vrecpsq_f32(__x, __out), __out); } template <> inline float32x4_t vActiveq_f32(const float32x4_t &x) { float32x4_t __one = vdupq_n_f32(1.f); float32x4_t __x = vnegq_f32(x); __x = vmulq_n_f32(__x, 2.f); __x = exp_ps(__x); __x = vaddq_f32(__x, __one); float32x4_t __out = vrecpeq_f32(__x); __out = vmulq_f32(vrecpsq_f32(__x, __out), __out); __out = vmulq_n_f32(__out, 2.f); return vsubq_f32(__out, __one); } template <> inline float32x4_t vActiveq_f32(const float32x4_t &x) { return log_ps(x); } #endif template inline float Active(const float &x) { return x; } template <> inline float Active(const float &x) { return std::max(x, 0.f); } template <> inline float Active(const float &x) { return std::min(std::max(x, 0.f), 6.f); } template <> inline float Active(const float &x) { // float tmp = x > SIGMOID_THRESHOLD_MAX ? SIGMOID_THRESHOLD_MAX : x; // tmp = x > SIGMOID_THRESHOLD_MIN ? x : SIGMOID_THRESHOLD_MIN; // return 1.f / (1.f + exp(-tmp)); return 1.f / (1.f + exp(-x)); } template <> inline float Active(const float &x) { // float tmp = -2.f * x; // tmp = (tmp > EXP_MAX_INPUT) ? EXP_MAX_INPUT : tmp; // return (2.f / (1.f + exp(tmp))) - 1.f; return 2.f / (1.f + exp(-2.f * x)) - 1.f; } template <> inline float Active(const float &x) { return log(x); } } // namespace math } // namespace operators } // namespace paddle_mobile