aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClGatherWorkload.hpp
blob: 264e276358c12346b954de0ed90c6817d59cfcf6 (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
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include "ClBaseWorkload.hpp"

#include <arm_compute/runtime/CL/functions/CLGather.h>

namespace armnn
{
arm_compute::Status ClGatherWorkloadValidate(const TensorInfo& input,
                                             const TensorInfo& indices,
                                             const TensorInfo& output,
                                             const GatherDescriptor& descriptor);

class ClGatherWorkload : public ClBaseWorkload<GatherQueueDescriptor>
{
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