From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- ...mnn_1_1_quantization_parameters_are_equal.xhtml | 190 +++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 20.02/structarmnn_1_1_quantization_parameters_are_equal.xhtml (limited to '20.02/structarmnn_1_1_quantization_parameters_are_equal.xhtml') diff --git a/20.02/structarmnn_1_1_quantization_parameters_are_equal.xhtml b/20.02/structarmnn_1_1_quantization_parameters_are_equal.xhtml new file mode 100644 index 0000000000..6111c6de88 --- /dev/null +++ b/20.02/structarmnn_1_1_quantization_parameters_are_equal.xhtml @@ -0,0 +1,190 @@ + + + + + + + + + + + + + +ArmNN: QuantizationParametersAreEqual Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
QuantizationParametersAreEqual Struct Reference
+
+
+ +

#include <LayerSupportRules.hpp>

+
+Inheritance diagram for QuantizationParametersAreEqual:
+
+
+ + +Rule + +
+ + + + + + + +

+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 80 of file LayerSupportRules.hpp.

+

Constructor & Destructor Documentation

+ +

◆ QuantizationParametersAreEqual()

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

Definition at line 82 of file LayerSupportRules.hpp.

+ +

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

+
83  {
84  m_Res = info0.GetQuantizationScale() == info1.GetQuantizationScale() &&
85  info0.GetQuantizationOffset() == info1.GetQuantizationOffset();
86  }
+
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1