blob: 94592cb53eb65449c1e4e589e911c5793b48349f [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
Sadik Armagan9199e582019-09-05 17:35:31 +01008#include "Abs.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +01009#include "Activation.hpp"
Nikhil Raj68c2c902019-09-19 11:21:11 +010010#include "ArgMinMax.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010011#include "BatchNormImpl.hpp"
David Beckb4540be2018-09-24 13:18:27 +010012#include "ConvImpl.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010013#include "Concatenate.hpp"
14#include "ElementwiseFunction.hpp"
David Beckb4540be2018-09-24 13:18:27 +010015#include "FullyConnected.hpp"
narpra014951d842019-01-18 16:53:53 +000016#include "Gather.hpp"
David Beckb4540be2018-09-24 13:18:27 +010017#include "Pooling2d.hpp"
Sadik Armagan9199e582019-09-05 17:35:31 +010018#include "RefAbsWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010019#include "RefActivationWorkload.hpp"
Nikhil Raj68c2c902019-09-19 11:21:11 +010020#include "RefArgMinMaxWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010021#include "RefBatchNormalizationWorkload.hpp"
Francis Murtagh47ea3c02019-06-20 12:07:19 +010022#include "RefBatchToSpaceNdWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010023#include "RefConvolution2dWorkload.hpp"
24#include "RefConstantWorkload.hpp"
25#include "RefConcatWorkload.hpp"
26#include "RefConvertFp16ToFp32Workload.hpp"
27#include "RefConvertFp32ToFp16Workload.hpp"
Nattapat Chaimanowongcfdcadf2018-12-06 11:54:33 +000028#include "RefDebugWorkload.hpp"
Aron Virginas-Tar73f66422019-09-23 19:11:59 +010029#include "RefDepthToSpaceWorkload.hpp"
30#include "RefDepthwiseConvolution2dWorkload.hpp"
31#include "RefDequantizeWorkload.hpp"
32#include "RefDetectionPostProcessWorkload.hpp"
Nattapat Chaimanowong8a54ac02019-03-29 15:25:04 +000033#include "RefDequantizeWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010034#include "RefElementwiseWorkload.hpp"
35#include "RefFullyConnectedWorkload.hpp"
36#include "RefFloorWorkload.hpp"
37#include "RefFakeQuantizationFloat32Workload.hpp"
38#include "RefGatherWorkload.hpp"
39#include "RefL2NormalizationWorkload.hpp"
40#include "RefLstmWorkload.hpp"
41#include "RefMeanWorkload.hpp"
42#include "RefNormalizationWorkload.hpp"
43#include "RefPooling2dWorkload.hpp"
44#include "RefPermuteWorkload.hpp"
45#include "RefPadWorkload.hpp"
Matteo Martincighab9e5252019-06-13 17:27:46 +010046#include "RefPreluWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010047#include "RefQuantizeWorkload.hpp"
Aron Virginas-Tar92b9f872019-09-17 17:27:04 +010048#include "RefReshapeWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010049#include "RefResizeBilinearWorkload.hpp"
Teresa Charlin970f43b2019-07-01 13:51:07 +010050#include "RefResizeWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010051#include "RefRsqrtWorkload.hpp"
Aron Virginas-Tar92b9f872019-09-17 17:27:04 +010052#include "RefSliceWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010053#include "RefSplitterWorkload.hpp"
54#include "RefSoftmaxWorkload.hpp"
55#include "RefSpaceToBatchNdWorkload.hpp"
Matthew Jackson81e601c2019-07-11 12:07:09 +010056#include "RefStackWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010057#include "RefStridedSliceWorkload.hpp"
58#include "RefSpaceToDepthWorkload.hpp"
Aron Virginas-Tar735a4502019-06-26 15:02:47 +010059#include "RefTransposeConvolution2dWorkload.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010060#include "RefWorkloadUtils.hpp"
Teresa Charlin970f43b2019-07-01 13:51:07 +010061#include "Resize.hpp"
Keith Davisa57eccb2019-06-14 17:33:22 +010062#include "Softmax.hpp"
63#include "Splitter.hpp"
Aron Virginas-Tar92b9f872019-09-17 17:27:04 +010064#include "TensorBufferArrayView.hpp"