From dd23f2af4ee4f41f34499ada9c6cd28c9479c6d3 Mon Sep 17 00:00:00 2001 From: Freddie Liardet Date: Thu, 17 Jun 2021 13:30:11 +0100 Subject: Add LayerData to all nodes Create LayerData type to store information about inputs/outputs of nodes, also adds convolution specific information. Resolves: COMPMID-4422 Signed-off-by: Freddie Liardet Change-Id: I1c3be1abe2fb5ed085108ab3d34b14a1b8561d38 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5876 Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- utils/TypePrinter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index e30bdc4157..3ccba2c7e9 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -77,7 +77,7 @@ inline ::std::ostream &operator<<(::std::ostream &os, const Dimensions &dimen for(unsigned int d = 1; d < dimensions.num_dimensions(); ++d) { - os << "x" << dimensions[d]; + os << "," << dimensions[d]; } } -- cgit v1.2.1