blob: 056127aae646700605dea36e5b9de9b552d1c894 [file] [log] [blame]
David Beckb4540be2018-09-24 13:18:27 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
Keith Davisa57eccb2019-06-14 17:33:22 +01008#include "Activation.hpp"
9#include "BatchNormImpl.hpp"
David Beckb4540be2018-09-24 13:18:27 +010010#include "ConvImpl.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010011#include "Concatenate.hpp"
12#include "ElementwiseFunction.hpp"
David Beckb4540be2018-09-24 13:18:27 +010013#include "FullyConnected.hpp"
narpra014951d842019-01-18 16:53:53 +000014#include "Gather.hpp"
David Beckb4540be2018-09-24 13:18:27 +010015#include "Pooling2d.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010016#include "RefActivationWorkload.hpp"
17#include "RefBatchNormalizationWorkload.hpp"
Éanna Ó Catháin4e1e1362018-11-12 11:36:34 +000018#include "RefBatchToSpaceNdUint8Workload.hpp"
19#include "RefBatchToSpaceNdFloat32Workload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010020#include "RefConvolution2dWorkload.hpp"
21#include "RefConstantWorkload.hpp"
22#include "RefConcatWorkload.hpp"
23#include "RefConvertFp16ToFp32Workload.hpp"
24#include "RefConvertFp32ToFp16Workload.hpp"
25#include "RefDepthwiseConvolution2dWorkload.hpp"
26#include "RefDetectionPostProcessWorkload.hpp"
Nattapat Chaimanowongcfdcadf2018-12-06 11:54:33 +000027#include "RefDebugWorkload.hpp"
Nattapat Chaimanowong8a54ac02019-03-29 15:25:04 +000028#include "RefDequantizeWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010029#include "RefElementwiseWorkload.hpp"
30#include "RefFullyConnectedWorkload.hpp"
31#include "RefFloorWorkload.hpp"
32#include "RefFakeQuantizationFloat32Workload.hpp"
33#include "RefGatherWorkload.hpp"
34#include "RefL2NormalizationWorkload.hpp"
35#include "RefLstmWorkload.hpp"
36#include "RefMeanWorkload.hpp"
37#include "RefNormalizationWorkload.hpp"
38#include "RefPooling2dWorkload.hpp"
39#include "RefPermuteWorkload.hpp"
40#include "RefPadWorkload.hpp"
Matteo Martincighab9e5252019-06-13 17:27:46 +010041#include "RefPreluWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010042#include "RefQuantizeWorkload.hpp"
43#include "RefResizeBilinearWorkload.hpp"
44#include "RefRsqrtWorkload.hpp"
45#include "RefReshapeWorkload.hpp"
46#include "RefSplitterWorkload.hpp"
47#include "RefSoftmaxWorkload.hpp"
48#include "RefSpaceToBatchNdWorkload.hpp"
49#include "RefStridedSliceWorkload.hpp"
50#include "RefSpaceToDepthWorkload.hpp"
51#include "RefWorkloadUtils.hpp"
52#include "ResizeBilinear.hpp"
53#include "Softmax.hpp"
54#include "Splitter.hpp"
55#include "TensorBufferArrayView.hpp"