blob: ec260a92f7561de04509a54bf531cf99f4cc270c [file] [log] [blame]
Aron Virginas-Tar73f66422019-09-23 19:11:59 +01001//
2// Copyright © 2019 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
Matteo Martincighe5b8eb92019-11-28 15:45:42 +00008#include <backendsCommon/Workload.hpp>
Aron Virginas-Tar73f66422019-09-23 19:11:59 +01009
10namespace armnn
11{
12
13class RefDepthToSpaceWorkload : public BaseWorkload<DepthToSpaceQueueDescriptor>
14{
15public:
16 using BaseWorkload<DepthToSpaceQueueDescriptor>::BaseWorkload;
Finn Williamsb8181f72021-04-07 10:23:21 +010017 void Execute() const override;
18 void ExecuteAsync(WorkingMemDescriptor& workingMemDescriptor) override;
19private:
20 void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
Aron Virginas-Tar73f66422019-09-23 19:11:59 +010021};
22
23} // namespace armnn