From d5d43d82c0137e08553e44345c609cdd1a7931c7 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 17 Jun 2022 13:24:58 +0100 Subject: Update Doxygen for 22.05 patch release * Pooling3D added to tfLite delegate * Available in tag 22.05.01 Signed-off-by: Nikhil Raj Change-Id: I8d605bba4e87d30baa2c6d7b338c78a4400dc021 --- 22.05.01/_neon_abs_workload_8cpp_source.xhtml | 133 ++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 22.05.01/_neon_abs_workload_8cpp_source.xhtml (limited to '22.05.01/_neon_abs_workload_8cpp_source.xhtml') diff --git a/22.05.01/_neon_abs_workload_8cpp_source.xhtml b/22.05.01/_neon_abs_workload_8cpp_source.xhtml new file mode 100644 index 0000000000..514495932e --- /dev/null +++ b/22.05.01/_neon_abs_workload_8cpp_source.xhtml @@ -0,0 +1,133 @@ + + + + + + + + + + + + + +ArmNN: src/backends/neon/workloads/NeonAbsWorkload.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05.01 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
NeonAbsWorkload.cpp
+
+
+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 #include "NeonAbsWorkload.hpp"
7 
8 #include "NeonWorkloadUtils.hpp"
9 
13 
14 namespace armnn
15 {
16 
18 {
19  const arm_compute::TensorInfo aclInput = armcomputetensorutils::BuildArmComputeTensorInfo(input);
20  const arm_compute::TensorInfo aclOutput = armcomputetensorutils::BuildArmComputeTensorInfo(output);
21 
22  return arm_compute::NEAbsLayer::validate(&aclInput, &aclOutput);
23 }
24 
26  : NeonBaseWorkload<AbsQueueDescriptor>(descriptor, info)
27 {
28  m_Data.ValidateInputsOutputs("NeonAbsWorkload", 1, 1);
29 
30  arm_compute::ITensor& input = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
31  arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
32 
33  m_AbsLayer.configure(&input, &output);
34 }
35 
37 {
38  ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID("NeonAbsWorkload_Execute", this->GetGuid());
39  m_AbsLayer.run();
40 }
41 
42 } // namespace armnn
+ +
arm::pipe::ProfilingGuid GetGuid() const final
Definition: Workload.hpp:59
+ +
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+
Copyright (c) 2021 ARM Limited and Contributors.
+
arm_compute::Status NeonAbsWorkloadValidate(const TensorInfo &input, const TensorInfo &output)
+ + + + +
Status
enumeration
Definition: Types.hpp:42
+ +
NeonAbsWorkload(const AbsQueueDescriptor &descriptor, const WorkloadInfo &info)
+
std::vector< ITensorHandle * > m_Outputs
+ +
Contains information about TensorInfos of a layer.
+
std::vector< ITensorHandle * > m_Inputs
+
virtual void Execute() const override
+
#define ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID(name, guid)
+
+
+ + + + -- cgit v1.2.1