ArmNN
 22.02
RefPooling3dWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2021 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(WorkingMemDescriptor& workingMemDescriptor) override;
23 private:
24  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
25 };
26 } //namespace armnn
Copyright (c) 2021 ARM Limited and Contributors.
void ExecuteAsync(WorkingMemDescriptor &workingMemDescriptor) override