aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Utils.h
diff options
context:
space:
mode:
authorMichel Iwaniec <michel.iwaniec@arm.com>2017-11-29 10:48:23 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:17 +0000
commit5dfeae62f89eefdc241887c3e67cd1c04ec0b6a7 (patch)
treed6b5d40353aa68aeda803c809812fd6e208c3e7f /arm_compute/core/Utils.h
parent7f0f790ae7f5dd044a5d7564492583b8df974a11 (diff)
downloadComputeLibrary-5dfeae62f89eefdc241887c3e67cd1c04ec0b6a7.tar.gz
IVGCVSW-820: Add QASYMM8 support to NeonActivationLayerKernel
Change-Id: Ic3881e97b4fcbae0ac287a1e010cfc6f0fd8d7d1 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/112139 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'arm_compute/core/Utils.h')
-rw-r--r--arm_compute/core/Utils.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/arm_compute/core/Utils.h b/arm_compute/core/Utils.h
index 9397d507f8..f78add13f9 100644
--- a/arm_compute/core/Utils.h
+++ b/arm_compute/core/Utils.h
@@ -25,6 +25,7 @@
#define __ARM_COMPUTE_UTILS_H__
#include "arm_compute/core/Error.h"
+#include "arm_compute/core/Rounding.h"
#include "arm_compute/core/Types.h"
#include <algorithm>
@@ -62,15 +63,6 @@ constexpr auto DIV_CEIL(S val, T m) -> decltype((val + m - 1) / m)
return (val + m - 1) / m;
}
-/** Return a rounded value of x. Rounding is done according to the rounding_policy.
- *
- * @param[in] x Float value to be rounded.
- * @param[in] rounding_policy Policy determining how rounding is done.
- *
- * @return Rounded value of the argument x.
- */
-int round(float x, RoundingPolicy rounding_policy);
-
/** Returns the arm_compute library build information
*
* Contains the version number and the build options used to build the library