From 8d2ca734165a068478df7cffa46185680b05cd20 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 24 Feb 2023 10:28:19 +0000 Subject: Update Doxygen docu for 23.02 Signed-off-by: Nikhil Raj Change-Id: Ie6c19a27d50fefab2796b2b5875374e81f5bf971 --- 23.02/_neon_minimum_workload_8hpp_source.xhtml | 125 +++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 23.02/_neon_minimum_workload_8hpp_source.xhtml (limited to '23.02/_neon_minimum_workload_8hpp_source.xhtml') diff --git a/23.02/_neon_minimum_workload_8hpp_source.xhtml b/23.02/_neon_minimum_workload_8hpp_source.xhtml new file mode 100644 index 0000000000..9f6316c197 --- /dev/null +++ b/23.02/_neon_minimum_workload_8hpp_source.xhtml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + +ArmNN: src/backends/neon/workloads/NeonMinimumWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
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