aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/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/runtime/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/runtime/GLES_COMPUTE')
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h
index 6a08d96676..c51d2c1613 100644
--- a/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h
+++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCDropoutLayer.h
@@ -25,7 +25,7 @@
#ifndef __ARM_COMPUTE_GCDROPOUTLAYER_H__
#define __ARM_COMPUTE_GCDROPOUTLAYER_H__
-#include "arm_compute/core/GLES_COMPUTE/kernels/GCDropoutKernel.h"
+#include "arm_compute/core/GLES_COMPUTE/kernels/GCDropoutLayerKernel.h"
#include "arm_compute/runtime/IFunction.h"
namespace arm_compute
@@ -33,7 +33,7 @@ namespace arm_compute
class IGCTensor;
/** Basic function to do dropout op. This function calls the following kernels:
*
- * -# @ref GCDropoutKernel
+ * -# @ref GCDropoutLayerKernel
*/
class GCDropoutLayer : public IFunction
{
@@ -56,7 +56,7 @@ public:
void run() override;
private:
- GCDropoutKernel _dropout_kernel;
+ GCDropoutLayerKernel _dropout_kernel;
};
}