aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-03-18 10:05:34 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-03-18 12:39:19 +0000
commit6fa2638ec2e2cf790c3cdaba1811087e024fbac4 (patch)
treefaf81ac8cb98d249ca498ebc62097d0f559f9120 /arm_compute
parentf7a3bf2519a0bdf38e12b3cfa9073dc4f293316d (diff)
downloadComputeLibrary-6fa2638ec2e2cf790c3cdaba1811087e024fbac4.tar.gz
COMPMID-1995: Fix compiler issues for invalid min,max arguments.
Change-Id: Iae55fdde57d6e93dec74b9ac398faa9f975ebdcb Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/864 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/NEON/NEAsymm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm_compute/core/NEON/NEAsymm.h b/arm_compute/core/NEON/NEAsymm.h
index 997f28f1f0..f71626182c 100644
--- a/arm_compute/core/NEON/NEAsymm.h
+++ b/arm_compute/core/NEON/NEAsymm.h
@@ -166,7 +166,7 @@ inline uint8_t finalize_quantization(int32_t in_value, int result_fixedpoint_mul
in_value += result_offset_after_shift_s32;
// Bound the result
- uint8_t out_u8 = static_cast<uint8_t>(std::max(0, std::min(255, in_value)));
+ uint8_t out_u8 = static_cast<uint8_t>(std::max<int32_t>(0, std::min<int32_t>(255, in_value)));
if(is_bounded_relu)
{
out_u8 = static_cast<uint8_t>(std::max(min_u8, std::min(max_u8, out_u8)));