From fb14ebbd68e04876809145296af96f6f41857418 Mon Sep 17 00:00:00 2001 From: James Ward Date: Thu, 26 Nov 2020 11:08:12 +0000 Subject: IVGCVSW-5348 Update Doxygen Docu * Update Doxygen Documentation for 20.11 release Signed-off-by: James Ward Change-Id: Ib47edac7923a642a277b1169d1085e5622021dc0 --- 20.11/_cl_mean_workload_8hpp_source.xhtml | 124 ++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 20.11/_cl_mean_workload_8hpp_source.xhtml (limited to '20.11/_cl_mean_workload_8hpp_source.xhtml') diff --git a/20.11/_cl_mean_workload_8hpp_source.xhtml b/20.11/_cl_mean_workload_8hpp_source.xhtml new file mode 100644 index 0000000000..3907c2c3d1 --- /dev/null +++ b/20.11/_cl_mean_workload_8hpp_source.xhtml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + +ArmNN: src/backends/cl/workloads/ClMeanWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ClMeanWorkload.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 
10 #include <arm_compute/runtime/CL/functions/CLReduceMean.h>
11 
12 namespace armnn
13 {
14 
15 arm_compute::Status ClMeanValidate(const TensorInfo& input,
16  const TensorInfo& output,
17  const MeanDescriptor& desc);
18 
19 class ClMeanWorkload : public BaseWorkload<MeanQueueDescriptor>
20 {
21 public:
22  ClMeanWorkload(const MeanQueueDescriptor& descriptor, const WorkloadInfo& info);
23 
24  void Execute() const override;
25 
26 private:
27  // Not using CLMeanStdDev, as 4D input tensor support for Mean has been added to a new function called CLReduceMean.
28  mutable arm_compute::CLReduceMean m_Layer;
29 };
30 
31 } //namespace armnn
void Execute() const override
+
Copyright (c) 2020 ARM Limited.
+ +
Status
enumeration
Definition: Types.hpp:26
+
ClMeanWorkload(const MeanQueueDescriptor &descriptor, const WorkloadInfo &info)
+
arm_compute::Status ClMeanValidate(const TensorInfo &input, const TensorInfo &output, const MeanDescriptor &desc)
+ + +
Contains information about inputs and outputs to a layer.
+ + +
+
+ + + + -- cgit v1.2.1