ArmNN
 22.08
EthosnRefTransposeConvolution2dWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
10 
11 namespace armnn
12 {
13 
14 class EthosnRefTransposeConvolution2dWorkload : public BaseWorkload<TransposeConvolution2dQueueDescriptor>
15 {
16 public:
18  const WorkloadInfo& info);
20 
21  void Execute() const override;
22 
23 private:
24  std::unique_ptr<ScopedCpuTensorHandle> m_Weight;
25  std::unique_ptr<ScopedCpuTensorHandle> m_Bias;
26 
27  TensorShape m_InputShape;
28  TensorShape m_OutputShape;
29 };
30 
31 } // namespace armnn
EthosnRefTransposeConvolution2dWorkload(const TransposeConvolution2dQueueDescriptor &descriptor, const WorkloadInfo &info)
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.