aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/GLES_COMPUTE
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/GLES_COMPUTE')
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCBufferAllocator.h10
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCFunctions.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCHelpers.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCMemory.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCScheduler.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCTensor.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCArithmeticAddition.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCConvolutionLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCDirectConvolutionLayer.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCFillBorder.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCFullyConnectedLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCGEMM.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMInterleave4x4.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCPixelWiseMultiplication.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCPoolingLayer.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCScale.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCSoftmaxLayer.h6
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h8
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h8
32 files changed, 113 insertions, 113 deletions
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCBufferAllocator.h b/arm_compute/runtime/GLES_COMPUTE/GCBufferAllocator.h
index 674297a63c..248c8716f0 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCBufferAllocator.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCBufferAllocator.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -12,7 +12,7 @@
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
- *gc
+ *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -21,8 +21,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
-#ifndef __ARM_COMPUTE_GCBUFFERALLOCATOR_H__
-#define __ARM_COMPUTE_GCBUFFERALLOCATOR_H__
+#ifndef ARM_COMPUTE_GCBUFFERALLOCATOR_H
+#define ARM_COMPUTE_GCBUFFERALLOCATOR_H
#include "arm_compute/runtime/IAllocator.h"
@@ -46,4 +46,4 @@ public:
std::unique_ptr<IMemoryRegion> make_region(size_t size, size_t alignment) override;
};
} // namespace arm_compute
-#endif /*__ARM_COMPUTE_GCBUFFERALLOCATOR_H__ */
+#endif /*ARM_COMPUTE_GCBUFFERALLOCATOR_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCFunctions.h b/arm_compute/runtime/GLES_COMPUTE/GCFunctions.h
index 67275303c9..4c0d91c2c9 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCFunctions.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCFunctions.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_GCFUNCTIONS_H__
-#define __ARM_COMPUTE_GCFUNCTIONS_H__
+#ifndef ARM_COMPUTE_GCFUNCTIONS_H
+#define ARM_COMPUTE_GCFUNCTIONS_H
/* Header regrouping all the GLES compute functions */
#include "arm_compute/runtime/GLES_COMPUTE/functions/GCAbsoluteDifference.h"
@@ -48,4 +48,4 @@
#include "arm_compute/runtime/GLES_COMPUTE/functions/GCTensorShift.h"
#include "arm_compute/runtime/GLES_COMPUTE/functions/GCTranspose.h"
-#endif /* __ARM_COMPUTE_GCFUNCTIONS_H__ */
+#endif /* ARM_COMPUTE_GCFUNCTIONS_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCHelpers.h b/arm_compute/runtime/GLES_COMPUTE/GCHelpers.h
index efc95e786d..60c2153902 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCHelpers.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCHelpers.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_GC_HELPERS_H__
-#define __ARM_COMPUTE_GC_HELPERS_H__
+#ifndef ARM_COMPUTE_GC_HELPERS_H
+#define ARM_COMPUTE_GC_HELPERS_H
#include "arm_compute/core/GLES_COMPUTE/OpenGLES.h"
@@ -36,4 +36,4 @@ namespace arm_compute
*/
std::tuple<EGLDisplay, EGLContext, EGLBoolean> create_opengl_display_and_context();
} // namespace arm_compute
-#endif /* __ARM_COMPUTE_GC_HELPERS_H__ */
+#endif /* ARM_COMPUTE_GC_HELPERS_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCMemory.h b/arm_compute/runtime/GLES_COMPUTE/GCMemory.h
index d8de800857..0c145e167d 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCMemory.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCMemory.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_RUNTIME_GLES_COMPUTE_GCMEMORY_H__
-#define __ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GCMEMORY_H__
+#ifndef ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GCMEMORY_H
+#define ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GCMEMORY_H
#include "arm_compute/runtime/IMemory.h"
@@ -82,4 +82,4 @@ private:
std::shared_ptr<IGCMemoryRegion> _region_owned;
};
} // namespace arm_compute
-#endif /* __ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GCMEMORY_H__ */
+#endif /* ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GCMEMORY_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h b/arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h
index 23e3cebe3f..ce95ea72ff 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-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_RUNTIME_GLES_COMPUTE_GC_MEMORY_REGION_H__
-#define __ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GC_MEMORY_REGION_H__
+#ifndef ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GC_MEMORY_REGION_H
+#define ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GC_MEMORY_REGION_H
#include "arm_compute/core/GLES_COMPUTE/OpenGLES.h"
#include "arm_compute/runtime/IMemoryRegion.h"
@@ -105,4 +105,4 @@ public:
std::unique_ptr<IMemoryRegion> extract_subregion(size_t offset, size_t size) final;
};
} // namespace arm_compute
-#endif /* __ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GC_MEMORY_REGION_H__ */
+#endif /* ARM_COMPUTE_RUNTIME_GLES_COMPUTE_GC_MEMORY_REGION_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h b/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h
index 353e9ec0c5..bc465a8b99 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.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_GCRUNTIME_CONTEXT_H__
-#define __ARM_COMPUTE_GCRUNTIME_CONTEXT_H__
+#ifndef ARM_COMPUTE_GCRUNTIME_CONTEXT_H
+#define ARM_COMPUTE_GCRUNTIME_CONTEXT_H
#include "arm_compute/core/GLES_COMPUTE/GCCoreRuntimeContext.h"
#include "arm_compute/core/GLES_COMPUTE/GCKernelLibrary.h"
@@ -64,4 +64,4 @@ private:
GCCoreRuntimeContext _core_context{};
};
} // namespace arm_compute
-#endif /*__ARM_COMPUTE_GCRUNTIME_CONTEXT_H__ */
+#endif /*ARM_COMPUTE_GCRUNTIME_CONTEXT_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h b/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
index e26e3112fc..5aac6b88dc 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
@@ -22,8 +22,8 @@
* SOFTWARE.
*/
-#ifndef __ARM_COMPUTE_GCSCHEDULER_H__
-#define __ARM_COMPUTE_GCSCHEDULER_H__
+#ifndef ARM_COMPUTE_GCSCHEDULER_H
+#define ARM_COMPUTE_GCSCHEDULER_H
#include "arm_compute/core/GLES_COMPUTE/IGCKernel.h"
#include "arm_compute/core/Types.h"
@@ -104,4 +104,4 @@ private:
GPUTarget _target;
};
}
-#endif /* __ARM_COMPUTE_GCSCHEDULER_H__ */
+#endif /* ARM_COMPUTE_GCSCHEDULER_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCTensor.h b/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
index a308ba0237..0565950fe0 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
@@ -22,8 +22,8 @@
* SOFTWARE.
*/
-#ifndef __ARM_COMPUTE_GCTENSOR_H__
-#define __ARM_COMPUTE_GCTENSOR_H__
+#ifndef ARM_COMPUTE_GCTENSOR_H
+#define ARM_COMPUTE_GCTENSOR_H
#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
#include "arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h"
@@ -103,4 +103,4 @@ private:
/** OpenGL ES Image */
using GCImage = GCTensor;
} // namespace arm_compute
-#endif /*__ARM_COMPUTE_GCTENSOR_H__ */
+#endif /*ARM_COMPUTE_GCTENSOR_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h b/arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h
index 2cd842942e..ee9861cbd1 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h
@@ -22,8 +22,8 @@
* SOFTWARE.
*/
-#ifndef __ARM_COMPUTE_GCTENSORALLOCATOR_H__
-#define __ARM_COMPUTE_GCTENSORALLOCATOR_H__
+#ifndef ARM_COMPUTE_GCTENSORALLOCATOR_H
+#define ARM_COMPUTE_GCTENSORALLOCATOR_H
#include "arm_compute/core/GLES_COMPUTE/OpenGLES.h"
#include "arm_compute/runtime/GLES_COMPUTE/GCMemory.h"
@@ -125,4 +125,4 @@ private:
uint8_t *_mapping; /**< Pointer to the CPU mapping of the OpenGL ES buffer. */
};
} // namespace arm_compute
-#endif /* __ARM_COMPUTE_GCTENSORALLOCATOR_H__ */
+#endif /* ARM_COMPUTE_GCTENSORALLOCATOR_H */
diff --git a/arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h b/arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h
index c3bd463d24..245e6f1991 100644
--- a/arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.h
+++ b/arm_compute/runtime/GLES_COMPUTE/IGCSimpleFunction.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_IGCSIMPLEFUNCTION_H__
-#define __ARM_COMPUTE_IGCSIMPLEFUNCTION_H__
+#ifndef ARM_COMPUTE_IGCSIMPLEFUNCTION_H
+#define ARM_COMPUTE_IGCSIMPLEFUNCTION_H
#include "arm_compute/core/GLES_COMPUTE/IGCKernel.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCFillBorderKernel.h"
@@ -60,4 +60,4 @@ protected:
GCRuntimeContext *_ctx; /**< Context to use */
};
} // namespace arm_compute
-#endif /*__ARM_COMPUTE_IGCSIMPLEFUNCTION_H__ */
+#endif /*ARM_COMPUTE_IGCSIMPLEFUNCTION_H */
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 */