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 5fa92e6360..0bea408519 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -666,6 +666,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const DataLayout &data_lay
case DataLayout::NDHWC:
os << "NDHWC";
break;
+ case DataLayout::NCDHW:
+ os << "NCDHW";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}
@@ -707,6 +710,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const DataLayoutDimension
case DataLayoutDimension::CHANNEL:
os << "CHANNEL";
break;
+ case DataLayoutDimension::DEPTH:
+ os << "DEPTH";
+ break;
case DataLayoutDimension::BATCHES:
os << "BATCHES";
break;