aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2023-05-16 12:27:28 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2023-06-07 15:08:55 +0000
commit5b701843b4bac9f5f18bd312400afed166f89ee0 (patch)
tree3749ee11983be9bb6c45a00610886ed2931f618b /src/backends/aclCommon
parent71311e4c47cf54a80f609d00c34e0da8b6e7d86c (diff)
downloadarmnn-5b701843b4bac9f5f18bd312400afed166f89ee0.tar.gz
IVGCVSW-7789 Enable dynamic bias in Depthwise Convolution in CpuAcc
* Dynamic bias are supported by CpuAcc for this layer * Indentation and const modifiers minor changes Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: I3b25f14feea55f746c254a832d97e21a1551ca36
Diffstat (limited to 'src/backends/aclCommon')
-rw-r--r--src/backends/aclCommon/ArmComputeTensorUtils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/aclCommon/ArmComputeTensorUtils.hpp b/src/backends/aclCommon/ArmComputeTensorUtils.hpp
index 0c2ff878e1..fab643ec1f 100644
--- a/src/backends/aclCommon/ArmComputeTensorUtils.hpp
+++ b/src/backends/aclCommon/ArmComputeTensorUtils.hpp
@@ -110,7 +110,7 @@ unsigned int ComputeDepthwiseConv2dDepthMultiplier(armnn::DataLayout layout,
/// Utility function used to setup an arm_compute::PadStrideInfo object from an ArmNN layer descriptor.
template <typename Descriptor>
-arm_compute::PadStrideInfo BuildArmComputePadStrideInfo(const Descriptor &descriptor)
+arm_compute::PadStrideInfo BuildArmComputePadStrideInfo(const Descriptor& descriptor)
{
return arm_compute::PadStrideInfo(descriptor.m_StrideX,
descriptor.m_StrideY,