blob: 03c8114cb64894796b9a77b9486da1a99d1ab9ff [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "ClBaseWorkload.hpp"
#include <arm_compute/core/Error.h>
#include <arm_compute/runtime/CL/functions/CLLogicalOr.h>
namespace armnn
{
arm_compute::Status ClLogicalOrWorkloadValidate(const TensorInfo& input0,
const TensorInfo& input1,
const TensorInfo& output);
class ClLogicalOrWorkload : public ClBaseWorkload<LogicalBinaryQueueDescriptor>
{
public:
ClLogicalOrWorkload(const LogicalBinaryQueueDescriptor& descriptor,
const WorkloadInfo& info,
const arm_compute::CLCompileContext& clCompileContext);
virtual void Execute() const override;
private:
mutable arm_compute::CLLogicalOr m_LogicalOrLayer;
};
} //namespace armnn