blob: 9c6c3d15a604620bbc33d61fbd245c0886b0cbe7 [file] [log] [blame]
James Conroyfe3ec942020-11-18 14:20:53 +00001//
2// Copyright © 2020 Arm Ltd and Contributors. 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/CL/functions/CLLogicalNot.h>
12
13namespace armnn
14{
15
16arm_compute::Status ClLogicalNotWorkloadValidate(const TensorInfo& input, const TensorInfo& output);
17
18class ClLogicalNotWorkload : public BaseWorkload<ElementwiseUnaryQueueDescriptor>
19{
20public:
Sadik Armagane9444752020-12-02 11:28:58 +000021 ClLogicalNotWorkload(const ElementwiseUnaryQueueDescriptor& descriptor,
22 const WorkloadInfo& info,
23 const arm_compute::CLCompileContext& clCompileContext);
James Conroyfe3ec942020-11-18 14:20:53 +000024 virtual void Execute() const override;
25
26private:
27 mutable arm_compute::CLLogicalNot m_LogicalNotLayer;
28};
29
30} //namespace armnn