From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- ...rmnn_1_1_quantization_parameters_are_equal.html | 195 +++++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100644 23.11/structarmnn_1_1_quantization_parameters_are_equal.html (limited to '23.11/structarmnn_1_1_quantization_parameters_are_equal.html') diff --git a/23.11/structarmnn_1_1_quantization_parameters_are_equal.html b/23.11/structarmnn_1_1_quantization_parameters_are_equal.html new file mode 100644 index 0000000000..ae2031ba41 --- /dev/null +++ b/23.11/structarmnn_1_1_quantization_parameters_are_equal.html @@ -0,0 +1,195 @@ + + + + + + + + +Arm NN: QuantizationParametersAreEqual Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
QuantizationParametersAreEqual Struct Reference
+
+
+ +

#include <LayerSupportRules.hpp>

+
+Inheritance diagram for QuantizationParametersAreEqual:
+
+
+
+
[legend]
+
+Collaboration diagram for QuantizationParametersAreEqual:
+
+
+
+
[legend]
+ + + + + + + +

+Public Member Functions

 QuantizationParametersAreEqual (const TensorInfo &info0, const TensorInfo &info1)
 
- Public Member Functions inherited from Rule
bool operator() () const
 
+ + + + +

+Additional Inherited Members

- Public Attributes inherited from Rule
bool m_Res = true
 
+

Detailed Description

+
+

Definition at line 81 of file LayerSupportRules.hpp.

+

Constructor & Destructor Documentation

+ +

◆ QuantizationParametersAreEqual()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
QuantizationParametersAreEqual (const TensorInfoinfo0,
const TensorInfoinfo1 
)
+
+inline
+
+ +

Definition at line 83 of file LayerSupportRules.hpp.

+
84  {
+
85  m_Res = info0.GetQuantizationScale() == info1.GetQuantizationScale() &&
+
86  info0.GetQuantizationOffset() == info1.GetQuantizationOffset();
+
87  }
+
+

References TensorInfo::GetQuantizationOffset(), TensorInfo::GetQuantizationScale(), and Rule::m_Res.

+ +
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + + -- cgit v1.2.1