aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL
diff options
context:
space:
mode:
authorVidhya Sudhan Loganathan <vidhyasudhan.loganathan@arm.com>2018-11-19 15:18:20 +0000
committerAnthony Barbier <Anthony.barbier@arm.com>2018-11-19 16:23:00 +0000
commitd646ae17893a89771cdc61ac8790f7e241ecd799 (patch)
tree753ec98326b58064f520464feb112142a779534d /src/runtime/CL
parente27887f9ec5e71b89829c7e8735839249e14bff9 (diff)
downloadComputeLibrary-d646ae17893a89771cdc61ac8790f7e241ecd799.tar.gz
COMPMID-1065 : Create documentation explaining how to add new functions / kernels
Change-Id: I98183f95814442b6f3dbb67a1bdae99df05b9b01
Diffstat (limited to 'src/runtime/CL')
-rw-r--r--src/runtime/CL/functions/CLReshapeLayer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/CL/functions/CLReshapeLayer.cpp b/src/runtime/CL/functions/CLReshapeLayer.cpp
index b1ca7a821d..b98a99dec3 100644
--- a/src/runtime/CL/functions/CLReshapeLayer.cpp
+++ b/src/runtime/CL/functions/CLReshapeLayer.cpp
@@ -27,6 +27,7 @@
#include "arm_compute/core/CL/kernels/CLReshapeLayerKernel.h"
#include "support/ToolchainSupport.h"
+/** [CLReshapeLayer snippet] **/
using namespace arm_compute;
void CLReshapeLayer::configure(const ICLTensor *input, ICLTensor *output)
@@ -40,3 +41,4 @@ Status CLReshapeLayer::validate(const ITensorInfo *input, const ITensorInfo *out
{
return CLReshapeLayerKernel::validate(input, output);
}
+/** [CLReshapeLayer snippet] **/