ArmNN
 24.02
RefCastWorkload.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"
10 #include "RefWorkloadUtils.hpp"
11 
12 namespace armnn
13 {
14 
15 
16 class RefCastWorkload : public RefBaseWorkload<CastQueueDescriptor>
17 {
18 public:
20  void Execute() const override;
21  void ExecuteAsync(ExecutionData& executionData) override;
22 private:
23  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
24 };
25 
26 } //namespace armnn
27 
WorkloadData.hpp
armnn::RefCastWorkload::ExecuteAsync
void ExecuteAsync(ExecutionData &executionData) override
Definition: RefCastWorkload.cpp:34
armnn::RefCastWorkload::Execute
void Execute() const override
Definition: RefCastWorkload.cpp:29
RefWorkloadUtils.hpp
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
RefBaseWorkload.hpp
armnn::RefCastWorkload
Definition: RefCastWorkload.hpp:16
armnn::RefBaseWorkload
Definition: RefBaseWorkload.hpp:13
armnn::experimental::ExecutionData
Definition: ExecutionData.hpp:14