aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/WorkloadUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/backendsCommon/WorkloadUtils.cpp')
-rw-r--r--src/backends/backendsCommon/WorkloadUtils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/backendsCommon/WorkloadUtils.cpp b/src/backends/backendsCommon/WorkloadUtils.cpp
index 3185ba00d3..9e008ca441 100644
--- a/src/backends/backendsCommon/WorkloadUtils.cpp
+++ b/src/backends/backendsCommon/WorkloadUtils.cpp
@@ -82,7 +82,7 @@ ConstTensor ReorderWeightChannelsForAcl(const ConstTensor& weightHandle, DataLay
break;
}
- DataType weightAclOrder[height*width*inputChannels*multiplier];
+ std::vector<DataType> weightAclOrder(height*width*inputChannels*multiplier);
unsigned int destinationWeightsChannel;
unsigned int totalChannels = inputChannels * multiplier;
unsigned int channelSize = height * width;
@@ -105,7 +105,7 @@ ConstTensor ReorderWeightChannelsForAcl(const ConstTensor& weightHandle, DataLay
}
}
- ::memcpy(permuteBuffer, weightAclOrder, weightHandle.GetInfo().GetNumBytes());
+ ::memcpy(permuteBuffer, weightAclOrder.data(), weightHandle.GetInfo().GetNumBytes());
return ConstTensor(weightHandle.GetInfo(), permuteBuffer);
}
@@ -158,7 +158,7 @@ armnn::ConstTensor ConvertWeightTensorFromArmnnToAcl(const ConstCpuTensorHandle*
ConstTensor weightPermuted = PermuteTensor(weightTensor, permutationVector, permuteBuffer);
// Shuffle the weights data to obtain the channel order needed used by Acl
- if (multiplier > 1 and inputChannels > 1 and dataLayout == DataLayout::NCHW)
+ if (multiplier > 1 && inputChannels > 1 && dataLayout == DataLayout::NCHW)
{
switch (weightPermuted.GetDataType())
{