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/namespacearmnn_tf_lite_parser.xhtml | 205 ++++++++++++++++++++++++++++++ 1 file changed, 205 insertions(+) create mode 100644 21.02/namespacearmnn_tf_lite_parser.xhtml (limited to '21.02/namespacearmnn_tf_lite_parser.xhtml') diff --git a/21.02/namespacearmnn_tf_lite_parser.xhtml b/21.02/namespacearmnn_tf_lite_parser.xhtml new file mode 100644 index 0000000000..a7c5c753fa --- /dev/null +++ b/21.02/namespacearmnn_tf_lite_parser.xhtml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + +ArmNN: armnnTfLiteParser Namespace Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
armnnTfLiteParser Namespace Reference
+
+
+ + + + + + +

+Classes

class  ITfLiteParser
 
class  TfLiteParserImpl
 
+ + + + + +

+Typedefs

using BindingPointInfo = armnn::BindingPointInfo
 
using ITfLiteParserPtr = std::unique_ptr< ITfLiteParser, void(*)(ITfLiteParser *parser)>
 
+ + + +

+Functions

unsigned int ComputeWrappedIndex (int idx, unsigned int numDimsIn)
 
+

Typedef Documentation

+ +

◆ BindingPointInfo

+ +
+
+ +

Definition at line 20 of file ITfLiteParser.hpp.

+ +
+
+ +

◆ ITfLiteParserPtr

+ +
+
+ + + + +
using ITfLiteParserPtr = std::unique_ptr<ITfLiteParser, void(*)(ITfLiteParser* parser)>
+
+ +

Definition at line 24 of file ITfLiteParser.hpp.

+ +
+
+

Function Documentation

+ +

◆ ComputeWrappedIndex()

+ +
+
+ + + + + + + + + + + + + + + + + + +
unsigned int armnnTfLiteParser::ComputeWrappedIndex (int idx,
unsigned int numDimsIn 
)
+
+ +

Definition at line 2786 of file TfLiteParser.cpp.

+ +

References ARMNN_ASSERT, CHECK_LOCATION, CHECK_MODEL, CHECK_VALID_SIZE, CHECKED_NON_NEGATIVE, IOutputSlot::Connect(), TfLiteParserImpl::GetBuffer(), TfLiteParserImpl::GetInputs(), IConnectableLayer::GetInputSlot(), TfLiteParserImpl::GetInputTensorIds(), IConnectableLayer::GetName(), TensorInfo::GetNumBytes(), TensorInfo::GetNumDimensions(), TensorInfo::GetNumElements(), IConnectableLayer::GetNumOutputSlots(), TfLiteParserImpl::GetOutputs(), IConnectableLayer::GetOutputSlot(), TfLiteParserImpl::GetOutputTensorIds(), TensorInfo::GetShape(), ActivationDescriptor::m_A, ArgMinMaxDescriptor::m_Axis, GatherDescriptor::m_Axis, ActivationDescriptor::m_B, ActivationDescriptor::m_Function, ArgMinMaxDescriptor::m_Function, ReduceDescriptor::m_KeepDims, ArgMinMaxDescriptor::m_Output_Type, ReduceDescriptor::m_ReduceOperation, ReduceDescriptor::m_vAxis, armnn::Max, armnn::MaxNumOfTensorDimensions, armnn::Min, armnn::numeric_cast(), IOutputSlot::SetTensorInfo(), armnn::Signed32, armnn::Signed64, armnn::Sum, and armnnDeserializer::ToTensorInfo().

+
2787 {
2788  int numDims = armnn::numeric_cast<int>(numDimsIn);
2789  int v = idx < 0 ? numDims + idx : idx;
2790  ARMNN_ASSERT(v >= 0);
2791  ARMNN_ASSERT(v < numDims);
2792 
2793  return static_cast<unsigned int>(v);
2794 }
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
+
std::enable_if_t< std::is_unsigned< Source >::value &&std::is_unsigned< Dest >::value, Dest > numeric_cast(Source source)
Definition: NumericCast.hpp:35
+
+
+
+
+
+ + + + -- cgit v1.2.1