aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/RefMeanFloat32Workload.hpp
diff options
context:
space:
mode:
authorJames Conroy <james.conroy@arm.com>2019-06-10 17:06:39 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 11:16:58 +0000
commit4d1ff588288b1a7a98dd2fd7f2ba5717b8ecf102 (patch)
treea6b8dbd9434b887dab4c9915b0bacea500410517 /src/backends/reference/workloads/RefMeanFloat32Workload.hpp
parentaece4edd329a1d6a66472cb314c49b20dc243183 (diff)
downloadarmnn-4d1ff588288b1a7a98dd2fd7f2ba5717b8ecf102.tar.gz
IVGCVSW-3221 Refactor Mean ref workload and tests
* Renamed RefMeanFloat32Workload and RefMeanUint8Workload to RefMeanWorkload, updated references to reflect this change. * Refactored RefFloorWorkload to use Decoders/Encoders, to support the use of multiple data types. * Deleted reference Unit8 Mean tests as they were duplicates of the Float32 tests. Refactored these tests to support multiple data types and updated references. * Adjusted the values used in the tests' input tensors so that they are more like floating point numbers e.g. change 1.0f to 1.5f. * Replace size_t with unsigned int in Mean ref workload, for better compatibility with the Encoder/Decoder, removed some unnecessary casts after this. * Added ValidateTensorDataTypesMatch() function to WorkloadData.cpp, added CreateIncorrectDimensionsErrorMsg function to RefLayerSupport.cpp. * Added passing and failing tests for ref IsMeanSupported. Signed-off-by: James Conroy <james.conroy@arm.com> Change-Id: Id3d44463d1385255c727a497d4026d21a49e7eb2
Diffstat (limited to 'src/backends/reference/workloads/RefMeanFloat32Workload.hpp')
-rw-r--r--src/backends/reference/workloads/RefMeanFloat32Workload.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/backends/reference/workloads/RefMeanFloat32Workload.hpp b/src/backends/reference/workloads/RefMeanFloat32Workload.hpp
deleted file mode 100644
index 153ebe161a..0000000000
--- a/src/backends/reference/workloads/RefMeanFloat32Workload.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include "backendsCommon/Workload.hpp"
-#include "backendsCommon/WorkloadData.hpp"
-
-namespace armnn
-{
-
-
-class RefMeanFloat32Workload : public Float32Workload<MeanQueueDescriptor>
-{
-public:
- explicit RefMeanFloat32Workload (const MeanQueueDescriptor& descriptor, const WorkloadInfo& info);
- virtual void Execute() const override;
-};
-
-}//namespace armnn