ArmNN
 23.08
RefDepthwiseConvolution2dWorkload.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 #include "RefBaseWorkload.hpp"
7 #include "Decoders.hpp"
8 #include "Encoders.hpp"
9 
10 #include <armnn/TypesUtils.hpp>
11 
12 namespace armnn
13 {
14 
15 class RefDepthwiseConvolution2dWorkload : public RefBaseWorkload<DepthwiseConvolution2dQueueDescriptor> {
16 public:
18  const WorkloadInfo &info);
19  void Execute() const override;
20  void ExecuteAsync(ExecutionData& executionData) override;
21 
22 private:
23  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
24 
25 };
26 
27 } //namespace armnn
WorkloadData.hpp
TypesUtils.hpp
armnn::WorkloadInfo
Contains information about TensorInfos of a layer.
Definition: WorkloadInfo.hpp:16
armnn::RefDepthwiseConvolution2dWorkload::ExecuteAsync
void ExecuteAsync(ExecutionData &executionData) override
Definition: RefDepthwiseConvolution2dWorkload.cpp:44
armnn::BoostLogSeverityMapping::info
@ info
armnn::DepthwiseConvolution2dQueueDescriptor
Depthwise Convolution 2D layer workload data.
Definition: WorkloadData.hpp:229
armnn::RefDepthwiseConvolution2dWorkload::Execute
void Execute() const override
Definition: RefDepthwiseConvolution2dWorkload.cpp:39
Decoders.hpp
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
RefBaseWorkload.hpp
armnn::RefDepthwiseConvolution2dWorkload
Definition: RefDepthwiseConvolution2dWorkload.hpp:15
Encoders.hpp
armnn::RefBaseWorkload
Definition: RefBaseWorkload.hpp:13
armnn::RefDepthwiseConvolution2dWorkload::RefDepthwiseConvolution2dWorkload
RefDepthwiseConvolution2dWorkload(const DepthwiseConvolution2dQueueDescriptor &descriptor, const WorkloadInfo &info)
Definition: RefDepthwiseConvolution2dWorkload.cpp:18
armnn::experimental::ExecutionData
Definition: ExecutionData.hpp:14