/* 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 "paddle/fluid/platform/cpu_info.h" #ifdef __AVX__ #include #endif #ifdef PADDLE_WITH_MKLML #include "paddle/fluid/platform/dynload/mklml.h" #endif namespace paddle { namespace operators { namespace math { #define SIGMOID_THRESHOLD_MIN -40.0 #define SIGMOID_THRESHOLD_MAX 13.0 template inline void vec_exp(const int n, const T* x, T* y) { for (int i = 0; i < n; ++i) { y[i] = std::exp(x[i]); } } #ifdef PADDLE_WITH_MKLML template <> inline void vec_exp(const int n, const float* x, float* y) { platform::dynload::vsExp(n, x, y); } template <> inline void vec_exp(const int n, const double* x, double* y) { platform::dynload::vdExp(n, x, y); } #endif template inline void vec_identity(const int n, const T* x, T* y) { // do nothing return; } template inline void vec_sigmoid(const int n, const T* x, T* y) { const T min = SIGMOID_THRESHOLD_MIN; const T max = SIGMOID_THRESHOLD_MAX; for (int i = 0; i < n; ++i) { y[i] = (x[i] < min) ? min : ((x[i] > max) ? max : x[i]); y[i] = static_cast(0) - y[i]; } vec_exp(n, y, y); for (int i = 0; i < n; ++i) { y[i] = static_cast(1) / (static_cast(1) + y[i]); } } template inline void vec_tanh(const int n, const T* x, T* y) { for (int i = 0; i < n; ++i) { y[i] = static_cast(2) * x[i]; } vec_exp(n, y, y); for (int i = 0; i < n; ++i) { y[i] = static_cast(2) * y[i] - static_cast(1); } } template inline void vec_relu(const int n, const T* x, T* y) { for (int i = 0; i < n; ++i) { y[i] = x[i] > 0 ? x[i] : 0; } } template <> inline void vec_relu(const int n, const float* x, float* y) { // TODO(TJ): complete me for (int i = 0; i < n; ++i) { y[i] = x[i] > 0 ? x[i] : 0; } } template <> inline void vec_relu(const int n, const float* x, float* y) { // TODO(TJ): complete me for (int i = 0; i < n; ++i) { y[i] = x[i] > 0 ? x[i] : 0; } } template class VecActivations { public: std::function operator()( const std::string& type) { if (type == "sigmoid") { return vec_sigmoid; } else if (type == "relu") { return vec_relu; } else if (type == "tanh") { return vec_tanh; } else if (type == "identity" || type == "") { return vec_identity; } LOG(FATAL) << "Not support type: " << type; } }; } // namespace math } // namespace operators } // namespace paddle