From f4643379c5f210d552ee3e8395f831ff5c168de7 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 29 Nov 2019 16:17:13 +0000 Subject: COMPMID-2826 Comply with DCL51-CPP Rename all header guards to be compliant with DCL51-CPP Change-Id: I47b09375bb1b8d39d80c275ce69a3f25fb385d75 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/2393 Comments-Addressed: Arm Jenkins Reviewed-by: Michele Di Giorgio Tested-by: Arm Jenkins --- arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h | 6 +++--- arm_compute/runtime/GLES_COMPUTE/functions/GCArithmeticAddition.h | 8 ++++---- .../runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.h | 6 +++--- arm_compute/runtime/GLES_COMPUTE/functions/GCConvolutionLayer.h | 6 +++--- .../runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.h | 6 +++--- .../runtime/GLES_COMPUTE/functions/GCDirectConvolutionLayer.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCFillBorder.h | 8 ++++---- .../runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h | 6 +++--- arm_compute/runtime/GLES_COMPUTE/functions/GCGEMM.h | 6 +++--- arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMInterleave4x4.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h | 6 +++--- .../runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h | 8 ++++---- .../runtime/GLES_COMPUTE/functions/GCPixelWiseMultiplication.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCPoolingLayer.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCScale.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h | 6 +++--- arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h | 8 ++++---- arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h | 8 ++++---- 22 files changed, 80 insertions(+), 80 deletions(-) (limited to 'arm_compute/runtime/GLES_COMPUTE/functions') diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h index 0d4a354e26..40e0c1a752 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -22,8 +22,8 @@ * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCABSOLUTEDIFFERENCE_H__ -#define __ARM_COMPUTE_GCABSOLUTEDIFFERENCE_H__ +#ifndef ARM_COMPUTE_GCABSOLUTEDIFFERENCE_H +#define ARM_COMPUTE_GCABSOLUTEDIFFERENCE_H #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -49,4 +49,4 @@ public: }; } -#endif /* __ARM_COMPUTE_GCABSOLUTEDIFFERENCE_H__ */ +#endif /* ARM_COMPUTE_GCABSOLUTEDIFFERENCE_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h index a046d1b38c..fc7a0a0134 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCACTIVATIONLAYER_H__ -#define __ARM_COMPUTE_GCACTIVATIONLAYER_H__ +#ifndef ARM_COMPUTE_GCACTIVATIONLAYER_H +#define ARM_COMPUTE_GCACTIVATIONLAYER_H #include "arm_compute/core/Types.h" #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -64,4 +64,4 @@ public: void configure(IGCTensor *input, IGCTensor *output, ActivationLayerInfo act_info); }; } // namespace arm_compute -#endif /* __ARM_COMPUTE_GCACTIVATIONLAYER_H__ */ +#endif /* ARM_COMPUTE_GCACTIVATIONLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCArithmeticAddition.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCArithmeticAddition.h index 721a9b4f2b..a16ab2d1ab 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCArithmeticAddition.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCArithmeticAddition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCARITHMETICADDITION_H__ -#define __ARM_COMPUTE_GCARITHMETICADDITION_H__ +#ifndef ARM_COMPUTE_GCARITHMETICADDITION_H +#define ARM_COMPUTE_GCARITHMETICADDITION_H #include "arm_compute/core/Types.h" #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -59,4 +59,4 @@ public: static Status validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, ConvertPolicy policy); }; } -#endif /* __ARM_COMPUTE_GCARITHMETICADDITION_H__ */ +#endif /* ARM_COMPUTE_GCARITHMETICADDITION_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h index 01e53d26f5..2d0aff53b6 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCBATCHNORMALIZATIONLAYER_H__ -#define __ARM_COMPUTE_GCBATCHNORMALIZATIONLAYER_H__ +#ifndef ARM_COMPUTE_GCBATCHNORMALIZATIONLAYER_H +#define ARM_COMPUTE_GCBATCHNORMALIZATIONLAYER_H #include "arm_compute/runtime/IFunction.h" @@ -66,4 +66,4 @@ private: GCBatchNormalizationLayerKernel _norm_kernel; /**< BatchNormalization layer kernel to run */ }; } -#endif /* __ARM_COMPUTE_GCBATCHNORMALIZATIONLAYER_H__ */ +#endif /* ARM_COMPUTE_GCBATCHNORMALIZATIONLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.h index c57b282dbe..eb25dbfc9a 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCDEPTHCONCATENATELAYER_H__ -#define __ARM_COMPUTE_GCDEPTHCONCATENATELAYER_H__ +#ifndef ARM_COMPUTE_GCDEPTHCONCATENATELAYER_H +#define ARM_COMPUTE_GCDEPTHCONCATENATELAYER_H #include "arm_compute/core/GLES_COMPUTE/OpenGLES.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCDepthConcatenateLayerKernel.h" @@ -65,4 +65,4 @@ private: unsigned int _axis; }; } // namespace arm_compute -#endif /* __ARM_COMPUTE_GCDEPTHCONCATENATELAYER_H__ */ +#endif /* ARM_COMPUTE_GCDEPTHCONCATENATELAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCConvolutionLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCConvolutionLayer.h index 74b875fcc0..311b3e273b 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCConvolutionLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCConvolutionLayer.h @@ -22,8 +22,8 @@ * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCCONVOLUTIONLAYER_H__ -#define __ARM_COMPUTE_GCCONVOLUTIONLAYER_H__ +#ifndef ARM_COMPUTE_GCCONVOLUTIONLAYER_H +#define ARM_COMPUTE_GCCONVOLUTIONLAYER_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCCol2ImKernel.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCFillBorderKernel.h" @@ -152,4 +152,4 @@ private: }; } -#endif /* __ARM_COMPUTE_GCCONVOLUTIONLAYER_H__ */ +#endif /* ARM_COMPUTE_GCCONVOLUTIONLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.h index 28db5e1310..e3f2c38446 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCDEPTHWISECONVOLUTION_H__ -#define __ARM_COMPUTE_GCDEPTHWISECONVOLUTION_H__ +#ifndef ARM_COMPUTE_GCDEPTHWISECONVOLUTION_H +#define ARM_COMPUTE_GCDEPTHWISECONVOLUTION_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCDepthwiseConvolutionLayer3x3Kernel.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCFillBorderKernel.h" @@ -73,4 +73,4 @@ private: bool _is_activationlayer_enabled; }; } -#endif /*__ARM_COMPUTE_GCDEPTHWISECONVOLUTION_H__ */ +#endif /*ARM_COMPUTE_GCDEPTHWISECONVOLUTION_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCDirectConvolutionLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCDirectConvolutionLayer.h index 9cfdec0f7e..cb62fef1d3 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCDirectConvolutionLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCDirectConvolutionLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCDIRECTCONVOLUTIONLAYER_H__ -#define __ARM_COMPUTE_GCDIRECTCONVOLUTIONLAYER_H__ +#ifndef ARM_COMPUTE_GCDIRECTCONVOLUTIONLAYER_H +#define ARM_COMPUTE_GCDIRECTCONVOLUTIONLAYER_H #include "arm_compute/core/GLES_COMPUTE/IGCKernel.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCDirectConvolutionLayerKernel.h" @@ -77,4 +77,4 @@ private: GCTensorShiftKernel _shift_handler; }; } -#endif /* __ARM_COMPUTE_GCDIRECTCONVOLUTIONLAYER_H__ */ +#endif /* ARM_COMPUTE_GCDIRECTCONVOLUTIONLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h index c51d2c1613..2152616dd9 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -22,8 +22,8 @@ * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCDROPOUTLAYER_H__ -#define __ARM_COMPUTE_GCDROPOUTLAYER_H__ +#ifndef ARM_COMPUTE_GCDROPOUTLAYER_H +#define ARM_COMPUTE_GCDROPOUTLAYER_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h" #include "arm_compute/runtime/IFunction.h" @@ -60,4 +60,4 @@ private: }; } -#endif /* __ARM_COMPUTE_GCDROPOUTLAYER_H__ */ +#endif /* ARM_COMPUTE_GCDROPOUTLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCFillBorder.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCFillBorder.h index a04e4002ff..87bb22db94 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCFillBorder.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCFillBorder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -22,8 +22,8 @@ * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCFILLBORDER_H__ -#define __ARM_COMPUTE_GCFILLBORDER_H__ +#ifndef ARM_COMPUTE_GCFILLBORDER_H +#define ARM_COMPUTE_GCFILLBORDER_H #include "arm_compute/core/PixelValue.h" #include "arm_compute/core/Types.h" @@ -49,4 +49,4 @@ public: }; } -#endif /*__ARM_COMPUTE_FILLBORDER_H__ */ +#endif /*ARM_COMPUTE_FILLBORDER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h index 64e98e2f4d..60967e9668 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCFULLYCONNECTEDLAYER_H__ -#define __ARM_COMPUTE_GCFULLYCONNECTEDLAYER_H__ +#ifndef ARM_COMPUTE_GCFULLYCONNECTEDLAYER_H +#define ARM_COMPUTE_GCFULLYCONNECTEDLAYER_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixAccumulateBiasesKernel.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixMultiplyKernel.h" @@ -107,4 +107,4 @@ private: bool _accumulate_biases; }; } -#endif /* __ARM_COMPUTE_GCFULLYCONNECTEDLAYER_H__ */ +#endif /* ARM_COMPUTE_GCFULLYCONNECTEDLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMM.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMM.h index 75531b3428..4fc621eb13 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMM.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMM.h @@ -22,8 +22,8 @@ * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCGEMM_H__ -#define __ARM_COMPUTE_GCGEMM_H__ +#ifndef ARM_COMPUTE_GCGEMM_H +#define ARM_COMPUTE_GCGEMM_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMInterleave4x4Kernel.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixAdditionKernel.h" @@ -111,4 +111,4 @@ private: }; } -#endif /* __ARM_COMPUTE_GCGEMM_H__ */ +#endif /* ARM_COMPUTE_GCGEMM_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMInterleave4x4.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMInterleave4x4.h index 2c83b13f84..d0e71b4e76 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMInterleave4x4.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMInterleave4x4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCGEMMINTERLEAVE4X4_H__ -#define __ARM_COMPUTE_GCGEMMINTERLEAVE4X4_H__ +#ifndef ARM_COMPUTE_GCGEMMINTERLEAVE4X4_H +#define ARM_COMPUTE_GCGEMMINTERLEAVE4X4_H #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -47,4 +47,4 @@ public: }; } -#endif /* __ARM_COMPUTE_GCGEMMINTERLEAVE4X4_H__ */ +#endif /* ARM_COMPUTE_GCGEMMINTERLEAVE4X4_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.h index 24af2193c3..782052bb65 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCGEMMTRANSPOSE1XW_H__ -#define __ARM_COMPUTE_GCGEMMTRANSPOSE1XW_H__ +#ifndef ARM_COMPUTE_GCGEMMTRANSPOSE1XW_H +#define ARM_COMPUTE_GCGEMMTRANSPOSE1XW_H #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -44,4 +44,4 @@ public: void configure(const IGCTensor *input, IGCTensor *output); }; } -#endif /*__ARM_COMPUTE_GCGEMMTRANSPOSE1XW_H__ */ +#endif /*ARM_COMPUTE_GCGEMMTRANSPOSE1XW_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h index fa10fdd75e..8d511aca7a 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCNORMALIZATIONLAYER_H__ -#define __ARM_COMPUTE_GCNORMALIZATIONLAYER_H__ +#ifndef ARM_COMPUTE_GCNORMALIZATIONLAYER_H +#define ARM_COMPUTE_GCNORMALIZATIONLAYER_H #include "arm_compute/runtime/IFunction.h" @@ -70,4 +70,4 @@ private: GCFillBorderKernel _border_handler; /**< Kernel to handle borders */ }; } // namespace arm_compute -#endif /* __ARM_COMPUTE_GCNORMALIZATIONLAYER_H__ */ +#endif /* ARM_COMPUTE_GCNORMALIZATIONLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h index d6cf4d0803..cd35c73403 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCNORMALIZEPLANARYUVLAYER_H__ -#define __ARM_COMPUTE_GCNORMALIZEPLANARYUVLAYER_H__ +#ifndef ARM_COMPUTE_GCNORMALIZEPLANARYUVLAYER_H +#define ARM_COMPUTE_GCNORMALIZEPLANARYUVLAYER_H #include "arm_compute/runtime/IFunction.h" @@ -72,4 +72,4 @@ private: GCNormalizePlanarYUVLayerKernel _norm_kernel; /**< NormalizePlanarYUV layer kernel to run */ }; } -#endif /* __ARM_COMPUTE_GCNORMALIZEPLANARYUVLAYER_H__ */ +#endif /* ARM_COMPUTE_GCNORMALIZEPLANARYUVLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCPixelWiseMultiplication.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCPixelWiseMultiplication.h index e6239edc2f..6baa0de501 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCPixelWiseMultiplication.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCPixelWiseMultiplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCPIXELWISEMULTIPLICATION_H__ -#define __ARM_COMPUTE_GCPIXELWISEMULTIPLICATION_H__ +#ifndef ARM_COMPUTE_GCPIXELWISEMULTIPLICATION_H +#define ARM_COMPUTE_GCPIXELWISEMULTIPLICATION_H #include "arm_compute/core/Types.h" #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -45,4 +45,4 @@ public: void configure(const IGCTensor *input1, const IGCTensor *input2, IGCTensor *output, float scale); }; } -#endif /*__ARM_COMPUTE_GCPIXELWISEMULTIPLICATION_H__ */ +#endif /*ARM_COMPUTE_GCPIXELWISEMULTIPLICATION_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCPoolingLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCPoolingLayer.h index 6f1dbb05bc..13b7ad363f 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCPoolingLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCPoolingLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCPOOLINGLAYER_H__ -#define __ARM_COMPUTE_GCPOOLINGLAYER_H__ +#ifndef ARM_COMPUTE_GCPOOLINGLAYER_H +#define ARM_COMPUTE_GCPOOLINGLAYER_H #include "arm_compute/core/GLES_COMPUTE/IGCKernel.h" #include "arm_compute/core/GLES_COMPUTE/kernels/GCFillBorderKernel.h" @@ -71,4 +71,4 @@ private: GCTensorShiftKernel _shift_handler; }; } // namespace arm_compute -#endif /* __ARM_COMPUTE_GCPOOLINGLAYER_H__ */ +#endif /* ARM_COMPUTE_GCPOOLINGLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCScale.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCScale.h index 680fa898ba..72d9b3c3e8 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCScale.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCScale.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCSCALE_H__ -#define __ARM_COMPUTE_GCSCALE_H__ +#ifndef ARM_COMPUTE_GCSCALE_H +#define ARM_COMPUTE_GCSCALE_H #include "arm_compute/core/Types.h" #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -51,4 +51,4 @@ public: SamplingPolicy sampling_policy = SamplingPolicy::CENTER); }; } -#endif /*__ARM_COMPUTE_GCSCALE_H__ */ +#endif /*ARM_COMPUTE_GCSCALE_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h index ec7c8d8a2f..33faae5e06 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCSOFTMAXLAYER_H__ -#define __ARM_COMPUTE_GCSOFTMAXLAYER_H__ +#ifndef ARM_COMPUTE_GCSOFTMAXLAYER_H +#define ARM_COMPUTE_GCSOFTMAXLAYER_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCSoftmaxLayerKernel.h" #include "arm_compute/runtime/GLES_COMPUTE/GCTensor.h" @@ -74,4 +74,4 @@ private: GCTensor _tmp; }; } // namespace arm_compute -#endif /* __ARM_COMPUTE_GCSOFTMAXLAYER_H__ */ +#endif /* ARM_COMPUTE_GCSOFTMAXLAYER_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h index dfcec57044..a1ac313c52 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCTENSORSHIFT_H__ -#define __ARM_COMPUTE_GCTENSORSHIFT_H__ +#ifndef ARM_COMPUTE_GCTENSORSHIFT_H +#define ARM_COMPUTE_GCTENSORSHIFT_H #include "arm_compute/core/GLES_COMPUTE/kernels/GCTensorShiftKernel.h" #include "arm_compute/core/Types.h" @@ -48,4 +48,4 @@ public: void configure(IGCTensor *input); }; } -#endif /* __ARM_COMPUTE_GCTENSORSHIFT_H__ */ +#endif /* ARM_COMPUTE_GCTENSORSHIFT_H */ diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h index 23324343f9..633facf073 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_GCTRANSPOSE_H__ -#define __ARM_COMPUTE_GCTRANSPOSE_H__ +#ifndef ARM_COMPUTE_GCTRANSPOSE_H +#define ARM_COMPUTE_GCTRANSPOSE_H #include "arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h" @@ -47,4 +47,4 @@ public: }; } -#endif /* __ARM_COMPUTE_GCTRANSPOSE_H__ */ +#endif /* ARM_COMPUTE_GCTRANSPOSE_H */ -- cgit v1.2.1