aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorFreddie Liardet <frederick.liardet@arm.com>2021-06-17 13:30:11 +0100
committerfrederick.liardet <frederick.liardet@arm.com>2021-07-08 14:49:39 +0000
commitdd23f2af4ee4f41f34499ada9c6cd28c9479c6d3 (patch)
treee5111c787cec863f4e188b0b155c158525c63e14 /utils
parentcfac51c779f9bf05e8b2d386fbfb4022767d1d30 (diff)
downloadComputeLibrary-dd23f2af4ee4f41f34499ada9c6cd28c9479c6d3.tar.gz
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 <frederick.liardet@arm.com> Change-Id: I1c3be1abe2fb5ed085108ab3d34b14a1b8561d38 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5876 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h2
1 files changed, 1 insertions, 1 deletions
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<T> &dimen
for(unsigned int d = 1; d < dimensions.num_dimensions(); ++d)
{
- os << "x" << dimensions[d];
+ os << "," << dimensions[d];
}
}