blob: 988eb3b791a42f50297252b8790d64efd19b4001 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas284cfe22018-02-13 12:15:13 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_NEFUNCTIONS_H__
25#define __ARM_COMPUTE_NEFUNCTIONS_H__
26
27/* Header regrouping all the NEON functions */
28#include "arm_compute/runtime/NEON/functions/NEAbsoluteDifference.h"
29#include "arm_compute/runtime/NEON/functions/NEAccumulate.h"
30#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
31#include "arm_compute/runtime/NEON/functions/NEArithmeticAddition.h"
32#include "arm_compute/runtime/NEON/functions/NEArithmeticSubtraction.h"
33#include "arm_compute/runtime/NEON/functions/NEBatchNormalizationLayer.h"
34#include "arm_compute/runtime/NEON/functions/NEBitwiseAnd.h"
35#include "arm_compute/runtime/NEON/functions/NEBitwiseNot.h"
36#include "arm_compute/runtime/NEON/functions/NEBitwiseOr.h"
37#include "arm_compute/runtime/NEON/functions/NEBitwiseXor.h"
38#include "arm_compute/runtime/NEON/functions/NEBox3x3.h"
39#include "arm_compute/runtime/NEON/functions/NECannyEdge.h"
40#include "arm_compute/runtime/NEON/functions/NEChannelCombine.h"
41#include "arm_compute/runtime/NEON/functions/NEChannelExtract.h"
Gian Marco857e32c2017-11-27 11:42:55 +000042#include "arm_compute/runtime/NEON/functions/NECol2Im.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043#include "arm_compute/runtime/NEON/functions/NEColorConvert.h"
Giorgio Arena657bdb32018-04-26 18:52:01 +010044#include "arm_compute/runtime/NEON/functions/NEConvertFullyConnectedWeights.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045#include "arm_compute/runtime/NEON/functions/NEConvolution.h"
46#include "arm_compute/runtime/NEON/functions/NEConvolutionLayer.h"
Pablo Tellof5f34bb2017-08-22 13:34:13 +010047#include "arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000048#include "arm_compute/runtime/NEON/functions/NEDepthConcatenateLayer.h"
49#include "arm_compute/runtime/NEON/functions/NEDepthConvertLayer.h"
50#include "arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h"
Michalis Spyrou53d8c5c2017-11-23 17:11:35 +000051#include "arm_compute/runtime/NEON/functions/NEDepthwiseSeparableConvolutionLayer.h"
Anthony Barbier14e7d142017-09-14 12:05:05 +010052#include "arm_compute/runtime/NEON/functions/NEDequantizationLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053#include "arm_compute/runtime/NEON/functions/NEDerivative.h"
54#include "arm_compute/runtime/NEON/functions/NEDilate.h"
55#include "arm_compute/runtime/NEON/functions/NEDirectConvolutionLayer.h"
56#include "arm_compute/runtime/NEON/functions/NEEqualizeHistogram.h"
57#include "arm_compute/runtime/NEON/functions/NEErode.h"
58#include "arm_compute/runtime/NEON/functions/NEFastCorners.h"
59#include "arm_compute/runtime/NEON/functions/NEFillBorder.h"
Gian Marco Iodice3c2c4332017-09-28 14:10:36 +010060#include "arm_compute/runtime/NEON/functions/NEFlattenLayer.h"
Georgios Pinitasd8e765b2017-08-02 13:44:33 +010061#include "arm_compute/runtime/NEON/functions/NEFloor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062#include "arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h"
63#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
Anthony Barbier71d9b572018-07-06 17:05:59 +010064#include "arm_compute/runtime/NEON/functions/NEGEMMAssemblyDispatch.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000065#include "arm_compute/runtime/NEON/functions/NEGEMMConvolutionLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066#include "arm_compute/runtime/NEON/functions/NEGEMMInterleave4x4.h"
Pablo Tello181e6512017-11-15 13:28:27 +000067#include "arm_compute/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.h"
Gian Marco Iodiceab182122017-10-09 15:05:40 +010068#include "arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h"
Gian Marcoe75a02b2017-11-08 12:24:09 +000069#include "arm_compute/runtime/NEON/functions/NEGEMMLowpOutputStage.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070#include "arm_compute/runtime/NEON/functions/NEGEMMTranspose1xW.h"
71#include "arm_compute/runtime/NEON/functions/NEGaussian3x3.h"
72#include "arm_compute/runtime/NEON/functions/NEGaussian5x5.h"
73#include "arm_compute/runtime/NEON/functions/NEGaussianPyramid.h"
74#include "arm_compute/runtime/NEON/functions/NEHOGDescriptor.h"
75#include "arm_compute/runtime/NEON/functions/NEHOGDetector.h"
76#include "arm_compute/runtime/NEON/functions/NEHOGGradient.h"
77#include "arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h"
78#include "arm_compute/runtime/NEON/functions/NEHarrisCorners.h"
79#include "arm_compute/runtime/NEON/functions/NEHistogram.h"
Gian Marco857e32c2017-11-27 11:42:55 +000080#include "arm_compute/runtime/NEON/functions/NEIm2Col.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081#include "arm_compute/runtime/NEON/functions/NEIntegralImage.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000082#include "arm_compute/runtime/NEON/functions/NEL2NormalizeLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083#include "arm_compute/runtime/NEON/functions/NELaplacianPyramid.h"
84#include "arm_compute/runtime/NEON/functions/NELaplacianReconstruct.h"
85#include "arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h"
86#include "arm_compute/runtime/NEON/functions/NEMagnitude.h"
87#include "arm_compute/runtime/NEON/functions/NEMeanStdDev.h"
88#include "arm_compute/runtime/NEON/functions/NEMedian3x3.h"
89#include "arm_compute/runtime/NEON/functions/NEMinMaxLocation.h"
90#include "arm_compute/runtime/NEON/functions/NENonLinearFilter.h"
91#include "arm_compute/runtime/NEON/functions/NENonMaximaSuppression3x3.h"
92#include "arm_compute/runtime/NEON/functions/NENormalizationLayer.h"
93#include "arm_compute/runtime/NEON/functions/NEOpticalFlow.h"
Georgios Pinitas284cfe22018-02-13 12:15:13 +000094#include "arm_compute/runtime/NEON/functions/NEPermute.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095#include "arm_compute/runtime/NEON/functions/NEPhase.h"
96#include "arm_compute/runtime/NEON/functions/NEPixelWiseMultiplication.h"
97#include "arm_compute/runtime/NEON/functions/NEPoolingLayer.h"
Anthony Barbier14e7d142017-09-14 12:05:05 +010098#include "arm_compute/runtime/NEON/functions/NEQuantizationLayer.h"
Michalis Spyrou542e92d2018-06-05 11:45:48 +010099#include "arm_compute/runtime/NEON/functions/NERNNLayer.h"
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100100#include "arm_compute/runtime/NEON/functions/NEROIPoolingLayer.h"
Georgios Pinitasd9769582017-08-03 10:19:40 +0100101#include "arm_compute/runtime/NEON/functions/NEReductionOperation.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102#include "arm_compute/runtime/NEON/functions/NERemap.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +0100103#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104#include "arm_compute/runtime/NEON/functions/NEScale.h"
105#include "arm_compute/runtime/NEON/functions/NEScharr3x3.h"
106#include "arm_compute/runtime/NEON/functions/NESobel3x3.h"
107#include "arm_compute/runtime/NEON/functions/NESobel5x5.h"
108#include "arm_compute/runtime/NEON/functions/NESobel7x7.h"
109#include "arm_compute/runtime/NEON/functions/NESoftmaxLayer.h"
110#include "arm_compute/runtime/NEON/functions/NETableLookup.h"
111#include "arm_compute/runtime/NEON/functions/NEThreshold.h"
112#include "arm_compute/runtime/NEON/functions/NETranspose.h"
113#include "arm_compute/runtime/NEON/functions/NEWarpAffine.h"
114#include "arm_compute/runtime/NEON/functions/NEWarpPerspective.h"
Georgios Pinitas9fb11592018-04-26 20:34:58 +0100115#include "arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100116
Giorgio Arena657bdb32018-04-26 18:52:01 +0100117#endif /* __ARM_COMPUTE_NEFUNCTIONS_H__ */