aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index 10e407ddfa..b868aa94a1 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -1220,9 +1220,15 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ReductionOperation &
{
switch(op)
{
+ case ReductionOperation::SUM:
+ os << "SUM";
+ break;
case ReductionOperation::SUM_SQUARE:
os << "SUM_SQUARE";
break;
+ case ReductionOperation::MEAN_SUM:
+ os << "MEAN_SUM";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}