avx_functions.cc 3.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
D
dangqingqing 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

15 16
#ifdef __AVX__

Y
Yi Wang 已提交
17
#include "paddle/fluid/operators/math/detail/activation_functions.h"
P
peizhilin 已提交
18
#include "paddle/fluid/operators/math/detail/avx_mathfun.h"
D
dangqingqing 已提交
19

20 21 22 23
namespace paddle {
namespace operators {
namespace math {
namespace detail {
D
dangqingqing 已提交
24

25
__m256 Exp(__m256 a) { return exp256_ps(a); }
D
dangqingqing 已提交
26

27 28
namespace forward {
namespace avx {
29
__m256 Relu(const __m256 a) {
D
dangqingqing 已提交
30 31 32 33
  __m256 tmp = _mm256_set1_ps(0.0f);
  return _mm256_max_ps(a, tmp);
}

34
__m256 Sigmoid(const __m256 a) {
D
dangqingqing 已提交
35 36 37 38 39
  __m256 max = _mm256_set1_ps(SIGMOID_THRESHOLD_MAX);
  __m256 min = _mm256_set1_ps(SIGMOID_THRESHOLD_MIN);
  __m256 tmp = _mm256_max_ps(a, min);
  tmp = _mm256_min_ps(tmp, max);
  tmp = _mm256_sub_ps(_mm256_set1_ps(0.0f), tmp);
40
  tmp = Exp(tmp);
D
dangqingqing 已提交
41 42 43 44 45
  tmp = _mm256_add_ps(_mm256_set1_ps(1.0f), tmp);
  tmp = _mm256_div_ps(_mm256_set1_ps(1.0f), tmp);
  return tmp;
}

46 47 48 49 50 51 52
__m256 SigmoidV2(const __m256 a) {
  __m256 tmp = _mm256_sub_ps(_mm256_set1_ps(0.0f), a);
  tmp = _mm256_add_ps(_mm256_set1_ps(1.0f), exp256_ps(tmp));
  tmp = _mm256_div_ps(_mm256_set1_ps(1.0f), tmp);
  return tmp;
}

53
__m256 Tanh(const __m256 a) {
D
dangqingqing 已提交
54 55 56
  __m256 max = _mm256_set1_ps(EXP_MAX_INPUT);
  __m256 tmp = _mm256_mul_ps(_mm256_set1_ps(-2.0f), a);
  tmp = _mm256_min_ps(tmp, max);
57
  tmp = Exp(tmp);
D
dangqingqing 已提交
58 59 60 61 62
  return _mm256_sub_ps(_mm256_div_ps(_mm256_set1_ps(2.0f),
                                     _mm256_add_ps(_mm256_set1_ps(1.0f), tmp)),
                       _mm256_set1_ps(1.0f));
}

63 64 65 66 67 68 69 70
__m256 TanhV2(const __m256 a) {
  __m256 tmp = _mm256_mul_ps(_mm256_set1_ps(-2.0f), a);
  return _mm256_sub_ps(
      _mm256_div_ps(_mm256_set1_ps(2.0f),
                    _mm256_add_ps(_mm256_set1_ps(1.0f), exp256_ps(tmp))),
      _mm256_set1_ps(1.0f));
}

71
__m256 Identity(const __m256 a) { return a; }
D
dangqingqing 已提交
72

73 74 75 76 77
}  // namespace avx
}  // namespace forward

namespace backward {
namespace avx {
78
__m256 Relu(const __m256 a, const __m256 b) {
D
dangqingqing 已提交
79 80 81 82 83
  return _mm256_mul_ps(
      a, _mm256_and_ps(_mm256_cmp_ps(b, _mm256_set1_ps(0.0f), _CMP_GT_OS),
                       _mm256_set1_ps(1.0f)));
}

84
__m256 Sigmoid(const __m256 a, const __m256 b) {
D
dangqingqing 已提交
85 86 87 88
  return _mm256_mul_ps(_mm256_mul_ps(a, b),
                       _mm256_sub_ps(_mm256_set1_ps(1.0f), b));
}

89
__m256 Tanh(const __m256 a, const __m256 b) {
D
dangqingqing 已提交
90 91 92 93
  return _mm256_mul_ps(
      a, _mm256_sub_ps(_mm256_set1_ps(1.0f), _mm256_mul_ps(b, b)));
}

94
__m256 Identity(const __m256 a, const __m256 b) { return a; }
95 96 97 98 99 100 101
}  // namespace avx
}  // namespace backward

}  // namespace detail
}  // namespace math
}  // namespace operators
}  // namespace paddle
102 103

#endif