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 --- ...uctarmnn_1_1_fake_quantization_descriptor.xhtml | 250 +++++++++++++++++++++ 1 file changed, 250 insertions(+) create mode 100644 20.02/structarmnn_1_1_fake_quantization_descriptor.xhtml (limited to '20.02/structarmnn_1_1_fake_quantization_descriptor.xhtml') diff --git a/20.02/structarmnn_1_1_fake_quantization_descriptor.xhtml b/20.02/structarmnn_1_1_fake_quantization_descriptor.xhtml new file mode 100644 index 0000000000..f424129c74 --- /dev/null +++ b/20.02/structarmnn_1_1_fake_quantization_descriptor.xhtml @@ -0,0 +1,250 @@ + + + + + + + + + + + + + +ArmNN: FakeQuantizationDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
FakeQuantizationDescriptor Struct Reference
+
+
+ +

A FakeQuantizationDescriptor for the FakeQuantizationLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + +

+Public Member Functions

 FakeQuantizationDescriptor ()
 
bool operator== (const FakeQuantizationDescriptor &rhs) const
 
+ + + + + + + +

+Public Attributes

float m_Min
 Minimum value. More...
 
float m_Max
 Maximum value. More...
 
+

Detailed Description

+

A FakeQuantizationDescriptor for the FakeQuantizationLayer.

+ +

Definition at line 688 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ FakeQuantizationDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
FakeQuantizationDescriptor ()
+
+inline
+
+ +

Definition at line 690 of file Descriptors.hpp.

+
691  : m_Min(-6.0f)
692  , m_Max(6.0f)
693  {}
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const FakeQuantizationDescriptorrhs) const
+
+inline
+
+ +

Definition at line 695 of file Descriptors.hpp.

+ +

References FakeQuantizationDescriptor::m_Max, and FakeQuantizationDescriptor::m_Min.

+
696  {
697  return m_Min == rhs.m_Min && m_Max == rhs.m_Max;
698  }
+ +
+
+
+

Member Data Documentation

+ +

◆ m_Max

+ +
+
+ + + + +
float m_Max
+
+
+ +

◆ m_Min

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