From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/_ref_transpose_workload_8cpp_source.xhtml | 128 ++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 21.02/_ref_transpose_workload_8cpp_source.xhtml (limited to '21.02/_ref_transpose_workload_8cpp_source.xhtml') diff --git a/21.02/_ref_transpose_workload_8cpp_source.xhtml b/21.02/_ref_transpose_workload_8cpp_source.xhtml new file mode 100644 index 0000000000..dcbf957c14 --- /dev/null +++ b/21.02/_ref_transpose_workload_8cpp_source.xhtml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + +ArmNN: src/backends/reference/workloads/RefTransposeWorkload.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
RefTransposeWorkload.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
7 #include "RefWorkloadUtils.hpp"
8 
10 
11 #include <ResolveType.hpp>
12 
13 namespace armnn
14 {
15 
16 template <armnn::DataType DataType>
18 {
19  using T = ResolveType<DataType>;
20 
21  ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, GetName() + "_Execute");
22 
23  const ITensorHandle* src = m_Data.m_Inputs[0];
24  ITensorHandle* dst = m_Data.m_Outputs[0];
25  const PermutationVector& mappings = m_Data.m_Parameters.m_DimMappings;
26 
27  armnnUtils::Transpose(GetTensorInfo(src).GetShape(), mappings, src->Map(), dst->Map(), sizeof(T));
28 }
29 
36 
37 } //namespace armnn
+
CPU Execution: Reference C++ kernels.
+ +
typename ResolveTypeImpl< DT >::Type ResolveType
Definition: ResolveType.hpp:73
+ + +
Copyright (c) 2021 ARM Limited and Contributors.
+
#define ARMNN_SCOPED_PROFILING_EVENT(backendId, name)
Definition: Profiling.hpp:173
+ + + +
virtual const void * Map(bool blocking=true) const =0
Map the tensor data for access.
+ + +
const TensorInfo & GetTensorInfo(const ITensorHandle *tensorHandle)
float32 helpers
+
+
+ + + + -- cgit v1.2.1