From 28f0dd99fba11ed9b7165eca17d801bdfb421576 Mon Sep 17 00:00:00 2001 From: Usama Arif Date: Mon, 20 May 2019 13:44:34 +0100 Subject: COMPMID-2279: Implement REDUCE_MAX operator for NEON Change-Id: Iccd25b8aab1dd871c0d86ec3816b1cbf48370066 Signed-off-by: Usama Arif Reviewed-on: https://review.mlplatform.org/c/1193 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez --- utils/TypePrinter.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index 9b8efe5a23..74dd0bbc35 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -1449,6 +1449,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ReductionOperation & case ReductionOperation::MIN: os << "MIN"; break; + case ReductionOperation::MAX: + os << "MAX"; + break; default: ARM_COMPUTE_ERROR("NOT_SUPPORTED!"); } -- cgit v1.2.1