From 6bd89ba5b6966f9c328cbf3fe187a5768c5e0664 Mon Sep 17 00:00:00 2001 From: tensor-tang Date: Fri, 24 Aug 2018 00:47:17 +0800 Subject: [PATCH] fix typo --- paddle/fluid/operators/math/cpu_vec.h | 2 +- paddle/fluid/operators/math/cpu_vec_test.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/fluid/operators/math/cpu_vec.h b/paddle/fluid/operators/math/cpu_vec.h index e74e84055a9..a2e2b5a7fed 100644 --- a/paddle/fluid/operators/math/cpu_vec.h +++ b/paddle/fluid/operators/math/cpu_vec.h @@ -82,7 +82,7 @@ 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); + vec_sigmoid(n, y, y); for (int i = 0; i < n; ++i) { y[i] = static_cast(2) * y[i] - static_cast(1); } diff --git a/paddle/fluid/operators/math/cpu_vec_test.cc b/paddle/fluid/operators/math/cpu_vec_test.cc index ab4858984d2..0888e44fa65 100644 --- a/paddle/fluid/operators/math/cpu_vec_test.cc +++ b/paddle/fluid/operators/math/cpu_vec_test.cc @@ -68,7 +68,7 @@ void RandomVec(const int n, T* a) { std::mt19937 rng(seed++); std::uniform_real_distribution uniform_dist(0, 1); const T lower = static_cast(-20.f); - const T upper = static_cast(-20.f); + const T upper = static_cast(20.f); for (int i = 0; i < n; ++i) { a[i] = static_cast(uniform_dist(rng) * (upper - lower) + lower); } -- GitLab