From 92fd94336e4b169005d88af401fe57bcbd50521b Mon Sep 17 00:00:00 2001 From: giuros01 Date: Mon, 3 Dec 2018 17:30:00 +0000 Subject: COMPMID-1754: NEON: Implement Maximum, Minumum, SquaredDifference Change-Id: I77e8c6a8af6ad841293ed5e66ed582035cc1424b Reviewed-on: https://review.mlplatform.org/339 Reviewed-by: Michalis Spyrou Tested-by: Arm Jenkins Reviewed-by: Gian Marco Iodice Reviewed-by: Georgios Pinitas --- arm_compute/core/Rounding.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/core/Rounding.h') 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 */ }; -- cgit v1.2.1