blob: 7b2ed17a3e828e7fdc278f2d2592ca1b0e923133 [file] [log] [blame]
Sadik Armaganac472102020-03-24 09:54:36 +00001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <backendsCommon/Workload.hpp>
9
10#include <arm_compute/core/Error.h>
11#include <arm_compute/runtime/NEON/functions/NEElementwiseUnaryLayer.h>
12
13namespace armnn
14{
15
16arm_compute::Status NeonNegWorkloadValidate(const TensorInfo& input, const TensorInfo& output);
17
18class NeonNegWorkload : public BaseWorkload<ElementwiseUnaryQueueDescriptor>
19{
20public:
21 NeonNegWorkload(const ElementwiseUnaryQueueDescriptor& descriptor, const WorkloadInfo& info);
22 virtual void Execute() const override;
23
24private:
25 mutable arm_compute::NENegLayer m_NegLayer;
26};
27
28} // namespace armnn