From c357c47be8a3f210f9eee9a05cc13f1051b036d3 Mon Sep 17 00:00:00 2001 From: Alex Gilday Date: Wed, 21 Mar 2018 13:54:09 +0000 Subject: COMPMID-1008: Fix Doxygen issues Change-Id: Ie73d8771f85d1f5b059f3a56f1bbd73c98e94a38 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124723 Reviewed-by: Michalis Spyrou Tested-by: Jenkins --- arm_compute/core/NEON/NEMath.inl | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'arm_compute/core/NEON/NEMath.inl') diff --git a/arm_compute/core/NEON/NEMath.inl b/arm_compute/core/NEON/NEMath.inl index 50f217c1f1..84154020a5 100644 --- a/arm_compute/core/NEON/NEMath.inl +++ b/arm_compute/core/NEON/NEMath.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -24,7 +24,7 @@ namespace arm_compute { -/* Exponent polynomial coefficients */ +/** Exponent polynomial coefficients */ const std::array exp_tab = { { @@ -39,7 +39,7 @@ const std::array exp_tab = } }; -/* Logarithm polynomial coefficients */ +/** Logarithm polynomial coefficients */ const std::array log_tab = { { @@ -54,6 +54,7 @@ const std::array log_tab = } }; +#ifndef DOXYGEN_SKIP_THIS inline float32x4_t vfloorq_f32(float32x4_t val) { static const float32x4_t CONST_1 = vdupq_n_f32(1.f); @@ -168,8 +169,10 @@ inline float32x4_t vpowq_f32(float32x4_t val, float32x4_t n) { return vexpq_f32(vmulq_f32(n, vlogq_f32(val))); } +#endif /* DOXYGEN_SKIP_THIS */ + #ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC -/* Exponent polynomial coefficients */ +/** Exponent polynomial coefficients */ const std::array exp_tab_f16 = { { @@ -184,7 +187,7 @@ const std::array exp_tab_f16 = } }; -/* Logarithm polynomial coefficients */ +/** Logarithm polynomial coefficients */ const std::array log_tab_f16 = { { @@ -199,6 +202,7 @@ const std::array log_tab_f16 = } }; +#ifndef DOXYGEN_SKIP_THIS inline float16x4_t vinvsqrt_f16(float16x4_t x) { float16x4_t sqrt_reciprocal = vrsqrte_f16(x); @@ -301,5 +305,6 @@ inline float16x8_t vpowq_f16(float16x8_t val, float16x8_t n) { return vexpq_f16(vmulq_f16(n, vlogq_f16(val))); } +#endif /* DOXYGEN_SKIP_THIS */ #endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */ } // namespace arm_compute -- cgit v1.2.1