ArmNN
 23.08
RefReverseV2Workload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "RefBaseWorkload.hpp"
10 
11 #include "ReverseV2Impl.hpp"
12 
13 namespace armnn
14 {
15 
16  class RefReverseV2Workload : public RefBaseWorkload<ReverseV2QueueDescriptor>
17  {
18  public:
19  explicit RefReverseV2Workload(const ReverseV2QueueDescriptor& descriptor,
20  const WorkloadInfo& info);
21 
22  void Execute() const override;
23  void ExecuteAsync(ExecutionData& executionData) override;
24 
25  private:
26  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
27 
28  };
29 
30 } // namespace armnn
WorkloadData.hpp
armnn::RefReverseV2Workload::Execute
void Execute() const override
Definition: RefReverseV2Workload.cpp:19
armnn::ReverseV2QueueDescriptor
Definition: WorkloadData.hpp:753
armnn::WorkloadInfo
Contains information about TensorInfos of a layer.
Definition: WorkloadInfo.hpp:16
armnn::BoostLogSeverityMapping::info
@ info
armnn::RefReverseV2Workload
Definition: RefReverseV2Workload.hpp:16
ReverseV2Impl.hpp
armnn::RefReverseV2Workload::ExecuteAsync
void ExecuteAsync(ExecutionData &executionData) override
Definition: RefReverseV2Workload.cpp:24
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
RefBaseWorkload.hpp
armnn::RefReverseV2Workload::RefReverseV2Workload
RefReverseV2Workload(const ReverseV2QueueDescriptor &descriptor, const WorkloadInfo &info)
Definition: RefReverseV2Workload.cpp:15
armnn::RefBaseWorkload
Definition: RefBaseWorkload.hpp:13
armnn::experimental::ExecutionData
Definition: ExecutionData.hpp:14