From ae050524109f1ce827962665436ef7430f2ac479 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Wed, 22 Mar 2023 16:48:58 +0000 Subject: IVGCVSW-7255 Update Doxygen Documentation and publish on GitHub. * Updating Doxygen documentation for 23.02 release. Signed-off-by: David Monahan Change-Id: I545574ff7664b4595d2fe6a91a3c35d2ad55df82 --- latest/_ref_mean_workload_8hpp_source.xhtml | 157 ++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 latest/_ref_mean_workload_8hpp_source.xhtml (limited to 'latest/_ref_mean_workload_8hpp_source.xhtml') diff --git a/latest/_ref_mean_workload_8hpp_source.xhtml b/latest/_ref_mean_workload_8hpp_source.xhtml new file mode 100644 index 0000000000..e165184775 --- /dev/null +++ b/latest/_ref_mean_workload_8hpp_source.xhtml @@ -0,0 +1,157 @@ + + + + + + + + + + + + + +ArmNN: src/backends/reference/workloads/RefMeanWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
RefMeanWorkload.hpp
+
+
+Go to the documentation of this file.
1 //
+
2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
+
3 // SPDX-License-Identifier: MIT
+
4 //
+
5 
+
6 #pragma once
+
7 
+
8 #include "RefBaseWorkload.hpp"
+ +
10 
+
11 #include "Decoders.hpp"
+
12 #include "Encoders.hpp"
+
13 
+
14 namespace armnn
+
15 {
+
16 
+
17 class RefMeanWorkload : public RefBaseWorkload<MeanQueueDescriptor>
+
18 {
+
19 public:
+
20  explicit RefMeanWorkload (const MeanQueueDescriptor& descriptor, const WorkloadInfo& info);
+
21  void Execute() const override;
+
22  void ExecuteAsync(ExecutionData& executionData) override;
+
23 private:
+
24  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
+
25 };
+
26 
+
27 } //namespace armnn
+
+
+ + +
void Execute() const override
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+ +
Contains information about TensorInfos of a layer.
+
RefMeanWorkload(const MeanQueueDescriptor &descriptor, const WorkloadInfo &info)
+ + + +
void ExecuteAsync(ExecutionData &executionData) override
+ + + + + + -- cgit v1.2.1