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 785b41fc62..9858478c29 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -2180,6 +2180,12 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ConvolutionMethod &c
case ConvolutionMethod::WINOGRAD:
os << "WINOGRAD";
break;
+ case ConvolutionMethod::FFT:
+ os << "FFT";
+ break;
+ case ConvolutionMethod::GEMM_CONV2D:
+ os << "GEMM_CONV2D";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}