ArmNN
 23.05
RefGatherNdWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "RefBaseWorkload.hpp"
9 
10 namespace armnn
11 {
12 
13 class RefGatherNdWorkload : public RefBaseWorkload<GatherNdQueueDescriptor>
14 {
15 public:
17  void Execute() const override;
18  void ExecuteAsync(ExecutionData& executionData) override;
19 private:
20  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
21 
22 };
23 
24 } // namespace armnn
armnn::RefBaseWorkload
Definition: RefBaseWorkload.hpp:13
armnn::RefGatherNdWorkload::ExecuteAsync
void ExecuteAsync(ExecutionData &executionData) override
Definition: RefGatherNdWorkload.cpp:21
armnn::RefGatherNdWorkload
Definition: RefGatherNdWorkload.hpp:13
armnn::experimental::ExecutionData
Definition: ExecutionData.hpp:14
RefBaseWorkload.hpp
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
armnn::RefGatherNdWorkload::Execute
void Execute() const override
Definition: RefGatherNdWorkload.cpp:16