From 9b3983299f882c8d84c5abd0d40ca75a801ea7f2 Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Wed, 22 May 2019 17:21:49 +0100 Subject: IVGCVSW-3025: Refactor reference Convolution2d workload * Refactored RefConvolution2dWorkload to support all DataTypes through Encoders and Decoders. * Added Convolute function to ConvImpl that uses Encoders and Decoders to support all DataTypes. * Deleted RefConvolution2dFloat32Workload and RefConvolution2dUint8Workload. Signed-off-by: Mike Kelly Signed-off-by: Teresa Charlin Change-Id: Ic5ef0f499d08b948fa65fdee54b5f681fd0b1c05 --- src/backends/backendsCommon/test/WorkloadTestUtils.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/backends/backendsCommon/test/WorkloadTestUtils.hpp') diff --git a/src/backends/backendsCommon/test/WorkloadTestUtils.hpp b/src/backends/backendsCommon/test/WorkloadTestUtils.hpp index d03c5a9210..212fea34a6 100644 --- a/src/backends/backendsCommon/test/WorkloadTestUtils.hpp +++ b/src/backends/backendsCommon/test/WorkloadTestUtils.hpp @@ -73,6 +73,9 @@ inline void ExecuteWorkload(armnn::IWorkload& workload, memoryManager->Acquire(); } + // Perform PostAllocationConfiguration + workload.PostAllocationConfigure(); + // Execute the workload workload.Execute(); -- cgit v1.2.1