From 549b9600a6eaf0727fa084465a75f173edf8f381 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 24 May 2022 11:32:07 +0100 Subject: Update 22.05 Doxygen Docs after updates to main Readme Signed-off-by: Nikhil Raj Change-Id: I56711772406a41ff81fa136a5fb6c59c9b9cf504 --- 22.05/_neon_minimum_workload_8hpp_source.xhtml | 125 +++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 22.05/_neon_minimum_workload_8hpp_source.xhtml (limited to '22.05/_neon_minimum_workload_8hpp_source.xhtml') diff --git a/22.05/_neon_minimum_workload_8hpp_source.xhtml b/22.05/_neon_minimum_workload_8hpp_source.xhtml new file mode 100644 index 0000000000..51ad5a0750 --- /dev/null +++ b/22.05/_neon_minimum_workload_8hpp_source.xhtml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + +ArmNN: src/backends/neon/workloads/NeonMinimumWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
NeonMinimumWorkload.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 
8 #include "NeonBaseWorkload.hpp"
9 
11 
12 #include <arm_compute/runtime/NEON/functions/NEElementwiseOperations.h>
13 
14 namespace armnn
15 {
16 
17 /// Validate function for validating the inputs and output.
18 /// @param [in] input0 The input0 value to be validated.
19 /// @param [in] input1 The input1 value to be validated.
20 /// @param [in] output The output value to be validated.
21 arm_compute::Status NeonMinimumWorkloadValidate(const TensorInfo& input0,
22  const TensorInfo& input1,
23  const TensorInfo& output);
24 
25 class NeonMinimumWorkload : public NeonBaseWorkload<MinimumQueueDescriptor>
26 {
27 public:
28  /// Create a NeonMinimumWorkload.
29  /// @param [in] descriptor The MinimumQueueDescriptor to configure this operation.
30  /// @param [in] info The workload where this operation can be found.
32 
33  /// Execute the Minimum operation.
34  virtual void Execute() const override;
35 
36 private:
37  mutable arm_compute::NEElementwiseMin m_MinLayer;
38 };
39 
40 } //namespace armnn
+
arm_compute::Status NeonMinimumWorkloadValidate(const TensorInfo &input0, const TensorInfo &input1, const TensorInfo &output)
Validate function for validating the inputs and output.
+
NeonMinimumWorkload(const MinimumQueueDescriptor &descriptor, const WorkloadInfo &info)
Create a NeonMinimumWorkload.
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+ +
virtual void Execute() const override
Execute the Minimum operation.
+
Status
enumeration
Definition: Types.hpp:42
+ + + +
Contains information about TensorInfos of a layer.
+
+
+ + + + -- cgit v1.2.1