• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "NeonBaseWorkload.hpp"
9 #include <arm_compute/core/Error.h>
10 #include <arm_compute/runtime/IFunction.h>
11 
12 namespace armnn
13 {
14 
15 arm_compute::Status NeonPreluWorkloadValidate(const TensorInfo& input,
16                                               const TensorInfo& alpha,
17                                               const TensorInfo& output);
18 
19 class NeonPreluWorkload : public NeonBaseWorkload<PreluQueueDescriptor>
20 {
21 public:
22     NeonPreluWorkload(const PreluQueueDescriptor& descriptor, const WorkloadInfo& info);
23     void Execute() const override;
24 
25 private:
26     std::unique_ptr<arm_compute::IFunction> m_PreluLayer;
27 };
28 
29 } //namespace armnn
30