aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/RefWorkloads.hpp
diff options
context:
space:
mode:
authorMatthew Bentham <matthew.bentham@arm.com>2022-05-18 09:21:15 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2022-05-24 11:01:29 +0000
commit44f4fb590ac980e68b5bd7f78c41454c97378180 (patch)
treeb45f40c8a38bcaaa61db37061638395fa6eb43db /src/backends/reference/workloads/RefWorkloads.hpp
parentbd4491b4ba57612b8aa3a9302a4069abe2817fae (diff)
downloadarmnn-44f4fb590ac980e68b5bd7f78c41454c97378180.tar.gz
Tidy up some code in the reference backend
Make some things private that don't need to be public in RefElementwiseWorkload. Remove non-workload header files from RefWorkloads.hpp - the non-workload header files are implementation detail of individual workloads, whereas RefWorloads.hpp should only contain the workload definitions, needed for RefWorkloadFactory. Signed-off-by: Matthew Bentham <matthew.bentham@arm.com> Change-Id: I4c28963a027162a6560e56cf84b6c0063283e48f
Diffstat (limited to 'src/backends/reference/workloads/RefWorkloads.hpp')
-rw-r--r--src/backends/reference/workloads/RefWorkloads.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/backends/reference/workloads/RefWorkloads.hpp b/src/backends/reference/workloads/RefWorkloads.hpp
index 3e83304616..b9c7a2a1fb 100644
--- a/src/backends/reference/workloads/RefWorkloads.hpp
+++ b/src/backends/reference/workloads/RefWorkloads.hpp
@@ -5,16 +5,6 @@
#pragma once
-#include "Activation.hpp"
-#include "ArgMinMax.hpp"
-#include "BatchNormImpl.hpp"
-#include "ConvImpl.hpp"
-#include "Concatenate.hpp"
-#include "ElementwiseFunction.hpp"
-#include "FullyConnected.hpp"
-#include "Gather.hpp"
-#include "Pooling2d.hpp"
-#include "Pooling3d.hpp"
#include "RefActivationWorkload.hpp"
#include "RefArgMinMaxWorkload.hpp"
#include "RefBatchNormalizationWorkload.hpp"
@@ -74,8 +64,3 @@
#include "RefTransposeConvolution2dWorkload.hpp"
#include "RefTransposeWorkload.hpp"
#include "RefUnidirectionalSequenceLstmWorkload.hpp"
-#include "RefWorkloadUtils.hpp"
-#include "Resize.hpp"
-#include "Softmax.hpp"
-#include "Splitter.hpp"
-#include "TensorBufferArrayView.hpp"