blob: d2d1954870d09ed1a7e1ef4c415f736fe893ba9c [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <backendsCommon/Workload.hpp>
#include <arm_compute/core/Error.h>
#include <arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h>
namespace armnn
{
arm_compute::Status ClExpWorkloadValidate(const TensorInfo& input, const TensorInfo& output);
class ClExpWorkload : public BaseWorkload<ElementwiseUnaryQueueDescriptor>
{
public:
ClExpWorkload(const ElementwiseUnaryQueueDescriptor& descriptor,
const WorkloadInfo& info,
const arm_compute::CLCompileContext& clCompileContext);
virtual void Execute() const override;
private:
mutable arm_compute::CLExpLayer m_ExpLayer;
};
} // namespace armnn