ArmNN
 25.02
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RefTileWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2020-2024 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 "Tile.hpp"
12 
13 namespace armnn
14 {
15 
16  class RefTileWorkload : public RefBaseWorkload<TileQueueDescriptor>
17  {
18  public:
19  explicit RefTileWorkload(const TileQueueDescriptor& descriptor,
20  const WorkloadInfo& info);
21 
22  void Execute() const override;
23 
24  private:
25  template <typename T>
26  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
27 
28  };
29 
30 } // namespace armnn
RefTileWorkload(const TileQueueDescriptor &descriptor, const WorkloadInfo &info)
void Execute() const override
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.