blob: ac8932c9d18a2cd01dfd66a21b8e3ef11b6eee4f [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <backendsCommon/Workload.hpp>
#include <arm_compute/runtime/CL/functions/CLPReluLayer.h>
namespace armnn
{
arm_compute::Status ClPreluWorkloadValidate(const TensorInfo& input,
const TensorInfo& alpha,
const TensorInfo& output);
class ClPreluWorkload : public BaseWorkload<PreluQueueDescriptor>
{
public:
ClPreluWorkload(const PreluQueueDescriptor& descriptor,
const WorkloadInfo& info,
const arm_compute::CLCompileContext& clCompileContext);
void Execute() const override;
private:
mutable arm_compute::CLPReluLayer m_PreluLayer;
};
} //namespace armnn