ArmNN
 25.11
Loading...
Searching...
No Matches
NeonPreluWorkload.hpp
Go to the documentation of this file.
1//
2// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
9#include <arm_compute/core/Error.h>
10#include <arm_compute/runtime/IFunction.h>
11
12namespace armnn
13{
14
15arm_compute::Status NeonPreluWorkloadValidate(const TensorInfo& input,
16 const TensorInfo& alpha,
17 const TensorInfo& output);
18
19class NeonPreluWorkload : public NeonBaseWorkload<PreluQueueDescriptor>
20{
21public:
23 void Execute() const override;
24
25private:
26 std::unique_ptr<arm_compute::IFunction> m_PreluLayer;
27};
28
29} //namespace armnn
NeonBaseWorkload(const PreluQueueDescriptor &descriptor, const WorkloadInfo &info)
void Execute() const override
NeonPreluWorkload(const PreluQueueDescriptor &descriptor, const WorkloadInfo &info)
Copyright (c) 2021 ARM Limited and Contributors.
arm_compute::Status NeonPreluWorkloadValidate(const TensorInfo &input, const TensorInfo &alpha, const TensorInfo &output)
Contains information about TensorInfos of a layer.