aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2019-08-14 10:13:50 +0100
committerGiorgio Arena <giorgio.arena@arm.com>2019-08-21 13:22:14 +0000
commit205eed8cf22d221fbee6442df73be9870879c9b5 (patch)
treede1e7836edf25afe6cc6fa19a358f02adf6a780e /arm_compute/runtime
parent400abc8291c1b3c5cfe1f151cc1b1f5004615150 (diff)
downloadComputeLibrary-205eed8cf22d221fbee6442df73be9870879c9b5.tar.gz
COMPMID-2080 Create a new kernel for CLPad with CONSTANT mode
Change-Id: Ib67bacd40c13c7784ca9f5699a235f9d106baddb Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Reviewed-on: https://review.mlplatform.org/c/1739 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Giuseppe Rossini <giuseppe.rossini@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime')
-rw-r--r--arm_compute/runtime/CL/functions/CLPadLayer.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/arm_compute/runtime/CL/functions/CLPadLayer.h b/arm_compute/runtime/CL/functions/CLPadLayer.h
index 7f140d9e1d..58e0cabe63 100644
--- a/arm_compute/runtime/CL/functions/CLPadLayer.h
+++ b/arm_compute/runtime/CL/functions/CLPadLayer.h
@@ -25,14 +25,10 @@
#define __ARM_COMPUTE_CLPADLAYER_H__
#include "arm_compute/core/CL/kernels/CLCopyKernel.h"
-#include "arm_compute/core/CL/kernels/CLMemsetKernel.h"
-#include "arm_compute/core/Types.h"
-#include "arm_compute/runtime/CL/functions/CLConcatenateLayer.h"
-
-#include "arm_compute/runtime/CL/CLScheduler.h"
+#include "arm_compute/core/CL/kernels/CLPadLayerKernel.h"
#include "arm_compute/runtime/CL/CLTensor.h"
+#include "arm_compute/runtime/CL/functions/CLConcatenateLayer.h"
#include "arm_compute/runtime/CL/functions/CLStridedSlice.h"
-#include "arm_compute/runtime/IFunction.h"
namespace arm_compute
{
@@ -47,8 +43,16 @@ class ICLTensor;
class CLPadLayer : public IFunction
{
public:
- /** Default constructor*/
+ /** Default constructor */
CLPadLayer();
+ /** Prevent instances of this class from being copied (As this class contains pointers) */
+ CLPadLayer(const CLPadLayer &) = delete;
+ /** Default move constructor */
+ CLPadLayer(CLPadLayer &&) = default;
+ /** Prevent instances of this class from being copied (As this class contains pointers) */
+ CLPadLayer &operator=(const CLPadLayer &) = delete;
+ /** Default move assignment operator */
+ CLPadLayer &operator=(CLPadLayer &&) = default;
/** Initialize the function
*
@@ -83,10 +87,10 @@ private:
void configure_constant_mode(ICLTensor *input, ICLTensor *output, const PaddingList &padding, const PixelValue constant_value);
void configure_reflect_symmetric_mode(ICLTensor *input, ICLTensor *output);
+ CLPadLayerKernel _pad_kernel;
CLCopyKernel _copy_kernel;
PaddingMode _mode;
PaddingList _padding;
- CLMemsetKernel _memset_kernel;
size_t _num_dimensions;
std::vector<CLStridedSlice> _slice_functions;
std::vector<CLConcatenateLayer> _concat_functions;