aboutsummaryrefslogtreecommitdiff
path: root/src/core/SubTensorInfo.cpp
diff options
context:
space:
mode:
authorSheri Zhang <sheri.zhang@arm.com>2021-05-06 10:05:22 +0100
committerSheri Zhang <sheri.zhang@arm.com>2021-05-07 09:58:48 +0000
commit78e76912f0758c60e83922098231645efc02d8d6 (patch)
treeb40f3cbc159be96c8758e908613e069eba4a12bd /src/core/SubTensorInfo.cpp
parent3ae6580d26cee273b750e69b5c06f6efa4caf3fb (diff)
downloadComputeLibrary-78e76912f0758c60e83922098231645efc02d8d6.tar.gz
Remove TODOs
Remove TODO/FIXME either already done or won't do. Partially resolve: COMPMID-4471 Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Change-Id: Iec8f25b9bf1b2a70c072dd17d44625fa93e84ed1 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5591 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/SubTensorInfo.cpp')
-rw-r--r--src/core/SubTensorInfo.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/SubTensorInfo.cpp b/src/core/SubTensorInfo.cpp
index fd3ebf26e8..3d68331181 100644
--- a/src/core/SubTensorInfo.cpp
+++ b/src/core/SubTensorInfo.cpp
@@ -121,7 +121,6 @@ bool SubTensorInfo::extend_padding(const PaddingSize &padding)
ARM_COMPUTE_ERROR_ON(_parent->total_size() == 0);
// Check that you do not extend padding on sub-tensors unless XY shape matches parent tensor
- // TODO(COMPMID-3558): Remove _extend_parent check
if(!_extend_parent && (padding.left || padding.right))
{
ARM_COMPUTE_ERROR_ON(_parent->tensor_shape().x() != tensor_shape().x());