aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/optimizations/FoldPadIntoLayer2d.hpp
diff options
context:
space:
mode:
authorTracy Narine <tracy.narine@arm.com>2024-02-12 14:19:03 +0000
committerColm Donelan <colm.donelan@arm.com>2024-02-13 11:13:03 +0000
commit0afb82adf48e33f2cbffa0920537c927c4d30a52 (patch)
tree851ec72fad56aca91b0f23db11427f83cbae545f /src/armnn/optimizations/FoldPadIntoLayer2d.hpp
parent73036eb7e47badf393f566778fb934856c7af26b (diff)
downloadarmnn-0afb82adf48e33f2cbffa0920537c927c4d30a52.tar.gz
MLCE-1165 Model failing to load when pad is folded into Conv2d
* Skipping the optimization which folds pad and conv2d together for a specific case: 1x1 filter and padding size >= filter size Signed-off-by: Tracy Narine <tracy.narine@arm.com> Change-Id: I46944e9f736df1ff60469b2d2852e1bba01ab8cd
Diffstat (limited to 'src/armnn/optimizations/FoldPadIntoLayer2d.hpp')
-rw-r--r--src/armnn/optimizations/FoldPadIntoLayer2d.hpp25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/armnn/optimizations/FoldPadIntoLayer2d.hpp b/src/armnn/optimizations/FoldPadIntoLayer2d.hpp
index 2f70e6352c..5592491653 100644
--- a/src/armnn/optimizations/FoldPadIntoLayer2d.hpp
+++ b/src/armnn/optimizations/FoldPadIntoLayer2d.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2021-2023 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2021-2024 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -154,6 +154,29 @@ Layer2dT* FoldPadIntoLayer2dImpl(Graph& graph, InputSlot& connection)
return nullptr;
}
+ // Workaround an issue in the compute library. The conv2d algorithm that the
+ // compute library is choosing is not handling the 1x1 filter case when
+ // the padding size >= filter size
+ if constexpr (std::is_same<Layer2dT, armnn::Convolution2dLayer>::value)
+ {
+ // Get filter width and height
+ armnnUtils::DataLayoutIndexed dataLayoutIndex(newLayer2dDescriptor.m_DataLayout);
+ const TensorShape& filterShape = layer2d.GetInputSlot(1).GetTensorInfo().GetShape();
+ unsigned int filterWidth = filterShape[dataLayoutIndex.GetWidthIndex()];
+ unsigned int filterHeight = filterShape[dataLayoutIndex.GetHeightIndex()];
+ // Calculate total padding and check conditions
+ auto horizontalPadding = newLayer2dDescriptor.m_PadLeft + newLayer2dDescriptor.m_PadRight;
+ auto verticalPadding = newLayer2dDescriptor.m_PadTop + newLayer2dDescriptor.m_PadBottom;
+ if ((filterWidth == 1) && (horizontalPadding >= filterWidth))
+ {
+ return nullptr;
+ }
+ else if ((filterHeight == 1) && (verticalPadding >= filterHeight))
+ {
+ return nullptr;
+ }
+ }
+
// Save original parent output slot of the pad layer
OutputSlot& parentSlot = *padLayer.GetInputSlot(0).GetConnectedOutputSlot();