aboutsummaryrefslogtreecommitdiff
path: root/utils/TypePrinter.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TypePrinter.h')
-rw-r--r--utils/TypePrinter.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index 91000cb702..2b81192a44 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -1342,6 +1342,12 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ReductionOperation &
case ReductionOperation::MEAN_SUM:
os << "MEAN_SUM";
break;
+ case ReductionOperation::ARG_IDX_MAX:
+ os << "ARG_IDX_MAX";
+ break;
+ case ReductionOperation::ARG_IDX_MIN:
+ os << "ARG_IDX_MIN";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}