From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- latest/_cl_splitter_workload_8hpp_source.html | 158 ++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 latest/_cl_splitter_workload_8hpp_source.html (limited to 'latest/_cl_splitter_workload_8hpp_source.html') diff --git a/latest/_cl_splitter_workload_8hpp_source.html b/latest/_cl_splitter_workload_8hpp_source.html new file mode 100644 index 0000000000..b4263e6377 --- /dev/null +++ b/latest/_cl_splitter_workload_8hpp_source.html @@ -0,0 +1,158 @@ + + + + + + + + +Arm NN: src/backends/cl/workloads/ClSplitterWorkload.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ClSplitterWorkload.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 "ClBaseWorkload.hpp"
+
9 
+
10 #include <arm_compute/core/Error.h>
+
11 #include <arm_compute/runtime/IFunction.h>
+
12 #include <arm_compute/runtime/CL/functions/CLSplit.h>
+
13 
+
14 #include <functional>
+
15 
+
16 namespace armnn
+
17 {
+
18 
+
19 arm_compute::Status ClSplitterWorkloadValidate(const TensorInfo& input,
+
20  const std::vector<std::reference_wrapper<TensorInfo>>& outputs,
+
21  unsigned int splitAxis);
+
22 
+
23 class ClSplitterWorkload : public ClBaseWorkload<SplitterQueueDescriptor>
+
24 {
+
25 public:
+ +
27  const WorkloadInfo& info,
+
28  const arm_compute::CLCompileContext& clCompileContext);
+
29 
+
30  void Execute() const override;
+
31 
+
32 private:
+
33  std::unique_ptr<arm_compute::IFunction> m_Layer;
+
34 };
+
35 
+
36 } //namespace armnn
+
+
+
ClSplitterWorkload(const SplitterQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
+ +
arm_compute::Status ClSplitterWorkloadValidate(const TensorInfo &input, const std::vector< std::reference_wrapper< TensorInfo >> &outputs, unsigned int splitAxis)
+ + +
Contains information about TensorInfos of a layer.
+ +
void Execute() const override
+
Status
Definition: Types.hpp:42
+
Copyright (c) 2021 ARM Limited and Contributors.
+ + + + + -- cgit v1.2.1