aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClLogicalAndWorkload.hpp
blob: 547995eed96a525330c6f35ce9ecd02ced3c3f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/backends/Workload.hpp>

#include <arm_compute/core/Error.h>
#include <arm_compute/runtime/CL/functions/CLLogicalAnd.h>

namespace armnn
{

arm_compute::Status ClLogicalAndWorkloadValidate(const TensorInfo& input0,
                                                 const TensorInfo& input1,
                                                 const TensorInfo& output);

class ClLogicalAndWorkload : public BaseWorkload<LogicalBinaryQueueDescriptor>
{
public:
    ClLogicalAndWorkload(const LogicalBinaryQueueDescriptor& descriptor,
                         const WorkloadInfo& info,
                         const arm_compute::CLCompileContext& clCompileContext);
    virtual void Execute() const override;

private:
    mutable arm_compute::CLLogicalAnd m_LogicalAndLayer;
};

} //namespace armnn