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 --- ...tection_post_process_workload_8hpp_source.xhtml | 124 +++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 23.02/_neon_detection_post_process_workload_8hpp_source.xhtml (limited to '23.02/_neon_detection_post_process_workload_8hpp_source.xhtml') diff --git a/23.02/_neon_detection_post_process_workload_8hpp_source.xhtml b/23.02/_neon_detection_post_process_workload_8hpp_source.xhtml new file mode 100644 index 0000000000..63fcadb29e --- /dev/null +++ b/23.02/_neon_detection_post_process_workload_8hpp_source.xhtml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + +ArmNN: src/backends/neon/workloads/NeonDetectionPostProcessWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
NeonDetectionPostProcessWorkload.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2019 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "NeonBaseWorkload.hpp"
9 
10 #include <arm_compute/core/Error.h>
11 #include <arm_compute/runtime/NEON/functions/NEDetectionPostProcessLayer.h>
12 
13 namespace armnn
14 {
15 
16 arm_compute::Status NeonDetectionPostProcessValidate(const TensorInfo& boxEncodings,
17  const TensorInfo& scores,
18  const TensorInfo& anchors,
19  const TensorInfo& detectionBoxes,
20  const TensorInfo& detectionClasses,
21  const TensorInfo& detectionScores,
22  const TensorInfo& numDetections,
23  const DetectionPostProcessDescriptor &descriptor);
24 
25 class NeonDetectionPostProcessWorkload : public NeonBaseWorkload<DetectionPostProcessQueueDescriptor>
26 {
27 public:
29  const DetectionPostProcessQueueDescriptor& descriptor,
30  const WorkloadInfo& info);
31  virtual void Execute() const override;
32 
33 private:
34  mutable arm_compute::NEDetectionPostProcessLayer m_Func;
35 
36  std::unique_ptr<arm_compute::Tensor> m_Anchors;
37 
38 };
39 
40 } // namespace armnn
+
Copyright (c) 2021 ARM Limited and Contributors.
+
+ +
arm_compute::Status NeonDetectionPostProcessValidate(const TensorInfo &boxEncodings, const TensorInfo &scores, const TensorInfo &anchors, const TensorInfo &detectionBoxes, const TensorInfo &detectionClasses, const TensorInfo &detectionScores, const TensorInfo &numDetections, const DetectionPostProcessDescriptor &descriptor)
+
NeonDetectionPostProcessWorkload(const DetectionPostProcessQueueDescriptor &descriptor, const WorkloadInfo &info)
+
Status
enumeration
Definition: Types.hpp:42
+ + +
Contains information about TensorInfos of a layer.
+
virtual void Execute() const override
+
+
+ + + + -- cgit v1.2.1