aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/GLES_COMPUTE
diff options
context:
space:
mode:
authorGian Marco <gianmarco.iodice@arm.com>2017-12-11 12:37:17 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commitff850937ddfd3095b3cbe32e5c255817e5ccfeda (patch)
treeb1061ed06aa177692eecbc1a37470c6379ff2a72 /arm_compute/core/GLES_COMPUTE
parentc0ee4611603861abd2b28eab97f38fe87629d580 (diff)
downloadComputeLibrary-ff850937ddfd3095b3cbe32e5c255817e5ccfeda.tar.gz
COMPMID-741 - Changelog for major release 17.12
Change-Id: If71190e398217ca6ca44df822554998d047b79db Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/112716 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/GLES_COMPUTE')
-rw-r--r--arm_compute/core/GLES_COMPUTE/GCKernels.h2
-rw-r--r--arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h (renamed from arm_compute/core/GLES_COMPUTE/kernels/GCDropoutKernel.h)20
2 files changed, 11 insertions, 11 deletions
diff --git a/arm_compute/core/GLES_COMPUTE/GCKernels.h b/arm_compute/core/GLES_COMPUTE/GCKernels.h
index 9831e25299..417c98af67 100644
--- a/arm_compute/core/GLES_COMPUTE/GCKernels.h
+++ b/arm_compute/core/GLES_COMPUTE/GCKernels.h
@@ -31,7 +31,7 @@
#include "arm_compute/core/GLES_COMPUTE/kernels/GCCol2ImKernel.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCDepthConcatenateLayerKernel.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCDirectConvolutionLayerKernel.h"
-#include "arm_compute/core/GLES_COMPUTE/kernels/GCDropoutKernel.h"
+#include "arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCFillBorderKernel.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMInterleave4x4Kernel.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixAccumulateBiasesKernel.h"
diff --git a/arm_compute/core/GLES_COMPUTE/kernels/GCDropoutKernel.h b/arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h
index 6159a7af26..9f04411d92 100644
--- a/arm_compute/core/GLES_COMPUTE/kernels/GCDropoutKernel.h
+++ b/arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h
@@ -22,8 +22,8 @@
* SOFTWARE.
*/
-#ifndef __ARM_COMPUTE_GCDROPOUTKERNEL_H__
-#define __ARM_COMPUTE_GCDROPOUTKERNEL_H__
+#ifndef __ARM_COMPUTE_GCDROPOUTLAYERKERNEL_H__
+#define __ARM_COMPUTE_GCDROPOUTLAYERKERNEL_H__
#include "arm_compute/core/GLES_COMPUTE/IGCKernel.h"
@@ -31,28 +31,28 @@ namespace arm_compute
{
class IGCTensor;
-/** Interface for the dropout kernel.
+/** Interface for the dropout layer kernel.
*
* Dropout is used to improve over-fit on neural networks.
*
*/
-class GCDropoutKernel : public IGCKernel
+class GCDropoutLayerKernel : public IGCKernel
{
public:
/** Default constructor */
- GCDropoutKernel();
+ GCDropoutLayerKernel();
/** Prevent instances of this class from being copied (As this class contains pointers) */
- GCDropoutKernel(const GCDropoutKernel &) = delete;
+ GCDropoutLayerKernel(const GCDropoutLayerKernel &) = delete;
/** Prevent instances of this class from being copied (As this class contains pointers) */
- GCDropoutKernel &operator=(const GCDropoutKernel &) = delete;
+ GCDropoutLayerKernel &operator=(const GCDropoutLayerKernel &) = delete;
/** Allow instances of this class to be moved */
- GCDropoutKernel(GCDropoutKernel &&) = default;
+ GCDropoutLayerKernel(GCDropoutLayerKernel &&) = default;
/** Allow instances of this class to be moved */
- GCDropoutKernel &operator=(GCDropoutKernel &&) = default;
+ GCDropoutLayerKernel &operator=(GCDropoutLayerKernel &&) = default;
/** Set the input and output of the kernel.
*
@@ -76,4 +76,4 @@ private:
};
}
-#endif /*__ARM_COMPUTE_GCDROPOUTKERNEL_H__ */
+#endif /*__ARM_COMPUTE_GCDROPOUTLAYERKERNEL_H__ */