aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core')
-rw-r--r--arm_compute/core/NEON/kernels/NEElementwiseUnaryKernel.h2
-rw-r--r--arm_compute/core/Types.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/arm_compute/core/NEON/kernels/NEElementwiseUnaryKernel.h b/arm_compute/core/NEON/kernels/NEElementwiseUnaryKernel.h
index f632b1a93a..2c019b52f0 100644
--- a/arm_compute/core/NEON/kernels/NEElementwiseUnaryKernel.h
+++ b/arm_compute/core/NEON/kernels/NEElementwiseUnaryKernel.h
@@ -88,7 +88,7 @@ public:
protected:
// Inherited methods overridden:
- static Status validate_arguments(const ITensorInfo &input, const ITensorInfo &output);
+ static Status validate_arguments(ElementWiseUnary op, const ITensorInfo &input, const ITensorInfo &output);
/** Function to use for the particular tensor types passed to configure() */
std::function<void(const ITensor *input, ITensor *output, const Window &window)> _function;
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index a2dfbb7d82..544ebff410 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -578,6 +578,7 @@ enum class ElementWiseUnary
{
RSQRT, /**< Reverse square root */
EXP, /**< Exponential */
+ NEG, /**< Negate */
};
/** The normalization type used for the normalization layer */