blob: b1b47a506992acb753809ec3df8ea482856bb9da [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <backendsCommon/Workload.hpp>
#include <arm_compute/runtime/NEON/functions/NEGather.h>
namespace armnn
{
arm_compute::Status NeonGatherWorkloadValidate(const TensorInfo& input,
const TensorInfo& indices,
const TensorInfo& output);
class NeonGatherWorkload : public BaseWorkload<GatherQueueDescriptor>
{
public:
NeonGatherWorkload(const GatherQueueDescriptor& descriptor, const WorkloadInfo& info);
virtual void Execute() const override;
private:
mutable arm_compute::NEGather m_Layer;
};
} //namespace armnn