From add078b7f9a658d52ee6e8fe6771ea0517c07674 Mon Sep 17 00:00:00 2001 From: mathad01 Date: Mon, 10 May 2021 16:51:20 +0100 Subject: IVGCVSW-5908 Update 21.05 Doxygen Documents Signed-off-by: mathad01 Change-Id: I95316d4fc5f9d10185492dc835bb2411c1daea7b --- 21.05/_neon_prelu_workload_8hpp_source.xhtml | 124 +++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 21.05/_neon_prelu_workload_8hpp_source.xhtml (limited to '21.05/_neon_prelu_workload_8hpp_source.xhtml') diff --git a/21.05/_neon_prelu_workload_8hpp_source.xhtml b/21.05/_neon_prelu_workload_8hpp_source.xhtml new file mode 100644 index 0000000000..c0d0fd3d0b --- /dev/null +++ b/21.05/_neon_prelu_workload_8hpp_source.xhtml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + +ArmNN: src/backends/neon/workloads/NeonPreluWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
NeonPreluWorkload.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. 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 
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 BaseWorkload<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
NeonPreluWorkload(const PreluQueueDescriptor &descriptor, const WorkloadInfo &info)
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+ + +
Status
enumeration
Definition: Types.hpp:30
+
void Execute() const override
+ + +
Contains information about inputs and outputs to a layer.
+
arm_compute::Status NeonPreluWorkloadValidate(const TensorInfo &input, const TensorInfo &alpha, const TensorInfo &output)
+
+
+ + + + -- cgit v1.2.1