blob: 89e5585249bdb1b074d4af8dda366931b37db9b6 [file] [log] [blame]
Keith Davisa57eccb2019-06-14 17:33:22 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#pragma once
6
Matteo Martincighe5b8eb92019-11-28 15:45:42 +00007#include <backendsCommon/Workload.hpp>
Keith Davisa57eccb2019-06-14 17:33:22 +01008
9#include <armnn/TypesUtils.hpp>
10
11namespace armnn
12{
13
14class RefSpaceToDepthWorkload : public BaseWorkload<SpaceToDepthQueueDescriptor>
15{
16public:
17 using BaseWorkload<SpaceToDepthQueueDescriptor>::BaseWorkload;
18 virtual void Execute() const override;
19};
20
21} //namespace armnn