blob: 72839e67dc1bbab63fdb6a0688e1fd2381d49576 [file] [log] [blame]
Matteo Martincighab9e5252019-06-13 17:27:46 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <backendsCommon/Workload.hpp>
9#include <backendsCommon/WorkloadData.hpp>
10
11namespace armnn
12{
13
14class RefPreluWorkload : public BaseWorkload<PreluQueueDescriptor>
15{
16public:
17 explicit RefPreluWorkload(const PreluQueueDescriptor& descriptor,
18 const WorkloadInfo& info);
19 virtual void Execute() const override;
20};
21
22} // namespace armnn