blob: d64340cb6ddc24159235fb6605285f14c4c75b21 [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/NEON/functions/NEElementwiseUnaryLayer.h>
namespace armnn
{
arm_compute::Status NeonExpWorkloadValidate(const TensorInfo& input, const TensorInfo& output);
class NeonExpWorkload : public BaseWorkload<ElementwiseUnaryQueueDescriptor>
{
public:
NeonExpWorkload(const ElementwiseUnaryQueueDescriptor& descriptor, const WorkloadInfo& info);
virtual void Execute() const override;
private:
mutable arm_compute::NEExpLayer m_ExpLayer;
};
} //namespace armnn