ArmNN
 22.08
EthosnRefDepthwiseConvolution2dWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
7 
8 #include <armnn/TypesUtils.hpp>
9 
10 namespace armnn
11 {
12 
13 class EthosnRefDepthwiseConvolution2dWorkload : public BaseWorkload<DepthwiseConvolution2dQueueDescriptor> {
14 public:
16  const WorkloadInfo &info);
17 
18  virtual void Execute() const override;
19 
20 private:
21 
22  std::unique_ptr <ScopedCpuTensorHandle> m_Weight;
23  std::unique_ptr <ScopedCpuTensorHandle> m_Bias;
24 
25  TensorShape m_InputShape;
26  TensorShape m_OutputShape;
27 };
28 
29 } //namespace armnn
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.
EthosnRefDepthwiseConvolution2dWorkload(const DepthwiseConvolution2dQueueDescriptor &descriptor, const WorkloadInfo &info)
Depthwise Convolution 2D layer workload data.