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