aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/NEON/NEFixedPoint.inl
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2017-06-22 12:57:51 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitbbd9fb95daa08d6da67c567b40ca2cd032f7a2d3 (patch)
treec1401585f64396d6f22bb790442d8183f3a17a9e /arm_compute/core/NEON/NEFixedPoint.inl
parent2eac5bd444d16e4e81c427d5a99e1534b387e211 (diff)
downloadComputeLibrary-bbd9fb95daa08d6da67c567b40ca2cd032f7a2d3.tar.gz
COMPMID-412: Port PoolingLayer to use fixed point 16.
Change-Id: I2005de4c7c14526996309826d33a0ec8e732d2d5 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78720 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Steven Niu <steven.niu@arm.com>
Diffstat (limited to 'arm_compute/core/NEON/NEFixedPoint.inl')
-rw-r--r--arm_compute/core/NEON/NEFixedPoint.inl40
1 files changed, 24 insertions, 16 deletions
diff --git a/arm_compute/core/NEON/NEFixedPoint.inl b/arm_compute/core/NEON/NEFixedPoint.inl
index dd1066d6bc..a5d9e7685d 100644
--- a/arm_compute/core/NEON/NEFixedPoint.inl
+++ b/arm_compute/core/NEON/NEFixedPoint.inl
@@ -25,8 +25,9 @@
namespace arm_compute
{
-/**< Exponent polynomial coefficients for 8 bit fixed point (8 elements)
- * Format is in Q0.7 for all elements */
+/** Exponent polynomial coefficients for 8 bit fixed point (8 elements)
+ * Format is in Q0.7 for all elements
+ */
static const std::array<qint8x8_t, 4> exp_tab_qs8 =
{
{
@@ -37,8 +38,9 @@ static const std::array<qint8x8_t, 4> exp_tab_qs8 =
}
};
-/**< Exponent polynomial coefficients for 16 bit fixed point (4 elements)
- * Format is in Q0.15 for all elements */
+/** Exponent polynomial coefficients for 16 bit fixed point (4 elements)
+ * Format is in Q0.15 for all elements
+ */
static const std::array<qint16x4_t, 4> exp_tab_qs16 =
{
{
@@ -49,8 +51,9 @@ static const std::array<qint16x4_t, 4> exp_tab_qs16 =
}
};
-/**< Exponent polynomial coefficients for 8 bit fixed point (16 elements)
- * Format is in Q0.7 for all elements */
+/** Exponent polynomial coefficients for 8 bit fixed point (16 elements)
+ * Format is in Q0.7 for all elements
+ */
static const std::array<qint8x16_t, 4> exp_tabq_qs8 =
{
{
@@ -61,8 +64,9 @@ static const std::array<qint8x16_t, 4> exp_tabq_qs8 =
}
};
-/**< Exponent polynomial coefficients for 16 bit fixed point (8 elements)
- * Format is in Q0.15 for all elements */
+/** Exponent polynomial coefficients for 16 bit fixed point (8 elements)
+ * Format is in Q0.15 for all elements
+ */
static const std::array<qint16x8_t, 4> exp_tabq_qs16 =
{
{
@@ -73,8 +77,9 @@ static const std::array<qint16x8_t, 4> exp_tabq_qs16 =
}
};
-/**< Logarithm polynomial coefficients for 8 bit fixed point (8 elements)
- * Format is in Q0.7 for all elements except the first one which is in Q1.6 */
+/** Logarithm polynomial coefficients for 8 bit fixed point (8 elements)
+ * Format is in Q0.7 for all elements except the first one which is in Q1.6
+ */
static const std::array<qint8x8_t, 4> log_tab_qs8 =
{
{
@@ -85,8 +90,9 @@ static const std::array<qint8x8_t, 4> log_tab_qs8 =
}
};
-/**< Logarithm polynomial coefficients for 16 bit fixed point (8 elements)
- * Format is in Q0.15 for all elements except the first one which is in Q1.14 */
+/** Logarithm polynomial coefficients for 16 bit fixed point (8 elements)
+ * Format is in Q0.15 for all elements except the first one which is in Q1.14
+ */
static const std::array<qint16x4_t, 4> log_tab_qs16 =
{
{
@@ -97,8 +103,9 @@ static const std::array<qint16x4_t, 4> log_tab_qs16 =
}
};
-/**< Logarithm polynomial coefficients for 8 bit fixed point (16 elements)
- * Format is in Q0.7 for all elements except the first one which is in Q1.6 */
+/** Logarithm polynomial coefficients for 8 bit fixed point (16 elements)
+ * Format is in Q0.7 for all elements except the first one which is in Q1.6
+ */
static const std::array<qint8x16_t, 4> log_tabq_qs8 =
{
{
@@ -109,8 +116,9 @@ static const std::array<qint8x16_t, 4> log_tabq_qs8 =
}
};
-/**< Logarithm polynomial coefficients for 16 bit fixed point (8 elements)
- * Format is in Q0.15 for all elements except the first one which is in Q1.14 */
+/** Logarithm polynomial coefficients for 16 bit fixed point (8 elements)
+ * Format is in Q0.15 for all elements except the first one which is in Q1.14
+ */
static const std::array<qint16x8_t, 4> log_tabq_qs16 =
{
{