// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ClBaseWorkload.hpp" #include namespace armnn { arm_compute::Status ClGatherWorkloadValidate(const TensorInfo& input, const TensorInfo& indices, const TensorInfo& output, const GatherDescriptor& descriptor); class ClGatherWorkload : public ClBaseWorkload { public: ClGatherWorkload(const GatherQueueDescriptor& descriptor, const WorkloadInfo& info, const arm_compute::CLCompileContext& clCompileContext); void Execute() const override; private: mutable arm_compute::CLGather m_Layer; }; } // namespace armnn