aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Rounding.h
diff options
context:
space:
mode:
authorgiuros01 <giuseppe.rossini@arm.com>2018-12-03 17:30:00 +0000
committerGiuseppe Rossini <giuseppe.rossini@arm.com>2018-12-17 16:43:51 +0000
commit92fd94336e4b169005d88af401fe57bcbd50521b (patch)
treed43bc672d0f250e85c72ab310168baea3eb982dc /arm_compute/core/Rounding.h
parentcc6129c06af98616a0e4d68475cfa3d92aaf63b3 (diff)
downloadComputeLibrary-92fd94336e4b169005d88af401fe57bcbd50521b.tar.gz
COMPMID-1754: NEON: Implement Maximum, Minumum, SquaredDifference
Change-Id: I77e8c6a8af6ad841293ed5e66ed582035cc1424b Reviewed-on: https://review.mlplatform.org/339 Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'arm_compute/core/Rounding.h')
-rw-r--r--arm_compute/core/Rounding.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm_compute/core/Rounding.h b/arm_compute/core/Rounding.h
index f95058c567..a9e9a713e4 100644
--- a/arm_compute/core/Rounding.h
+++ b/arm_compute/core/Rounding.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -29,7 +29,7 @@ namespace arm_compute
/** Rounding method */
enum class RoundingPolicy
{
- TO_ZERO, /**< Truncates the least significand values that are lost in operations. */
+ TO_ZERO, /**< Truncates the least significant values that are lost in operations. */
TO_NEAREST_UP, /**< Rounds to nearest value; half rounds away from zero */
TO_NEAREST_EVEN, /**< Rounds to nearest value; half rounds to nearest even */
};