aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEMagnitude.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEMagnitude.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEMagnitude.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEMagnitude.h b/arm_compute/runtime/NEON/functions/NEMagnitude.h
index 56c88c2125..50935b619d 100644
--- a/arm_compute/runtime/NEON/functions/NEMagnitude.h
+++ b/arm_compute/runtime/NEON/functions/NEMagnitude.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2019 Arm Limited.
+ * Copyright (c) 2016-2020 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -24,6 +24,7 @@
#ifndef ARM_COMPUTE_NEMAGNITUDE_H
#define ARM_COMPUTE_NEMAGNITUDE_H
+#include "arm_compute/core/Types.h"
#include "arm_compute/runtime/NEON/INESimpleFunctionNoBorder.h"
namespace arm_compute
@@ -34,6 +35,18 @@ class ITensor;
class NEMagnitude : public INESimpleFunctionNoBorder
{
public:
+ /** Constructor */
+ NEMagnitude() = default;
+ /** Prevent instances of this class from being copied (As this class contains pointers) */
+ NEMagnitude(const NEMagnitude &) = delete;
+ /** Prevent instances of this class from being copied (As this class contains pointers) */
+ NEMagnitude &operator=(const NEMagnitude &) = delete;
+ /** Prevent instances of this class from being moved (As this class contains non movable objects) */
+ NEMagnitude(NEMagnitude &&) = delete;
+ /** Prevent instances of this class from being moved (As this class contains non movable objects) */
+ NEMagnitude &operator=(NEMagnitude &&) = delete;
+ /** Default destructor */
+ ~NEMagnitude();
/** Initialise the kernel's inputs.
*
* @param[in] input1 First tensor input. Data type supported: S16.