blob: c35aebbeb980f06367fb7028acd889b4a33feb4d [file] [log] [blame]
Sadik Armagan9fabf432020-05-27 13:40:58 +01001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <backendsCommon/Workload.hpp>
9
10#include <arm_compute/core/Error.h>
11#include <arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h>
12
13namespace armnn
14{
15
16arm_compute::Status ClExpWorkloadValidate(const TensorInfo& input, const TensorInfo& output);
17
18class ClExpWorkload : public BaseWorkload<ElementwiseUnaryQueueDescriptor>
19{
20public:
21 ClExpWorkload(const ElementwiseUnaryQueueDescriptor& descriptor, const WorkloadInfo& info);
22 virtual void Execute() const override;
23
24private:
25 mutable arm_compute::CLExpLayer m_ExpLayer;
26};
27
28} // namespace armnn