blob: 40312d121add9bb2a7f05f66447f21540325145b [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Stephen Lie855c232018-01-04 14:13:22 +08002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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_GCKERNELS_H__
25#define __ARM_COMPUTE_GCKERNELS_H__
26
27/* Header regrouping all the GLES compute kernels */
28#include "arm_compute/core/GLES_COMPUTE/kernels/GCAbsoluteDifferenceKernel.h"
29#include "arm_compute/core/GLES_COMPUTE/kernels/GCActivationLayerKernel.h"
zhenglin926d5e12017-12-21 15:36:50 +080030#include "arm_compute/core/GLES_COMPUTE/kernels/GCArithmeticAdditionKernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010031#include "arm_compute/core/GLES_COMPUTE/kernels/GCBatchNormalizationLayerKernel.h"
32#include "arm_compute/core/GLES_COMPUTE/kernels/GCCol2ImKernel.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000033#include "arm_compute/core/GLES_COMPUTE/kernels/GCDepthConcatenateLayerKernel.h"
Frank Lei8cdfdb82018-01-02 16:49:33 +080034#include "arm_compute/core/GLES_COMPUTE/kernels/GCDepthwiseConvolutionLayer3x3Kernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010035#include "arm_compute/core/GLES_COMPUTE/kernels/GCDirectConvolutionLayerKernel.h"
Gian Marcoff850932017-12-11 12:37:17 +000036#include "arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010037#include "arm_compute/core/GLES_COMPUTE/kernels/GCFillBorderKernel.h"
38#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMInterleave4x4Kernel.h"
39#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixAccumulateBiasesKernel.h"
40#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixAdditionKernel.h"
41#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixMultiplyKernel.h"
42#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMTranspose1xWKernel.h"
43#include "arm_compute/core/GLES_COMPUTE/kernels/GCIm2ColKernel.h"
44#include "arm_compute/core/GLES_COMPUTE/kernels/GCNormalizationLayerKernel.h"
zhenglin0fb6cf52017-12-12 15:56:09 +080045#include "arm_compute/core/GLES_COMPUTE/kernels/GCNormalizePlanarYUVLayerKernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010046#include "arm_compute/core/GLES_COMPUTE/kernels/GCPixelWiseMultiplicationKernel.h"
47#include "arm_compute/core/GLES_COMPUTE/kernels/GCPoolingLayerKernel.h"
Frank Lei57a150a2017-12-19 10:14:57 +080048#include "arm_compute/core/GLES_COMPUTE/kernels/GCScaleKernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010049#include "arm_compute/core/GLES_COMPUTE/kernels/GCSoftmaxLayerKernel.h"
Xinghang Zhou33ff9ef2018-01-17 11:23:39 +080050#include "arm_compute/core/GLES_COMPUTE/kernels/GCTensorShiftKernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010051#include "arm_compute/core/GLES_COMPUTE/kernels/GCTransposeKernel.h"
Stephen Lie855c232018-01-04 14:13:22 +080052#include "arm_compute/core/GLES_COMPUTE/kernels/GCWeightsReshapeKernel.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010053
54#endif /* __ARM_COMPUTE_GCKERNELS_H__ */