blob: efb2865ebd3d7b554ebe542648bfcc2284d3c448 [file] [log] [blame]
josh minor4a3c6102020-01-06 16:40:46 -06001//
2// Copyright © 2019 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "BaseIterator.hpp"
9
10#include <backendsCommon/Workload.hpp>
11#include <backendsCommon/WorkloadData.hpp>
12
13namespace armnn
14{
15
16class RefElementwiseUnaryWorkload : public BaseWorkload<ElementwiseUnaryQueueDescriptor>
17{
18public:
19 using BaseWorkload<ElementwiseUnaryQueueDescriptor>::m_Data;
20
21 RefElementwiseUnaryWorkload(const ElementwiseUnaryQueueDescriptor& descriptor, const WorkloadInfo& info);
22 void PostAllocationConfigure() override;
23 void Execute() const override;
24
25private:
26 using InType = float;
27 using OutType = float;
28
29 std::unique_ptr<Decoder<InType>> m_Input;
30 std::unique_ptr<Encoder<OutType>> m_Output;
31};
32
33} // namespace armnn