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 --- ...armnn_quantizer_1_1_quantization_data_set.xhtml | 446 +++++++++++++++++++++ 1 file changed, 446 insertions(+) create mode 100644 20.02/classarmnn_quantizer_1_1_quantization_data_set.xhtml (limited to '20.02/classarmnn_quantizer_1_1_quantization_data_set.xhtml') diff --git a/20.02/classarmnn_quantizer_1_1_quantization_data_set.xhtml b/20.02/classarmnn_quantizer_1_1_quantization_data_set.xhtml new file mode 100644 index 0000000000..dd1e7d827b --- /dev/null +++ b/20.02/classarmnn_quantizer_1_1_quantization_data_set.xhtml @@ -0,0 +1,446 @@ + + + + + + + + + + + + + +ArmNN: QuantizationDataSet Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
QuantizationDataSet Class Reference
+
+
+ +

QuantizationDataSet is a structure which is created after parsing a quantization CSV file. + More...

+ +

#include <QuantizationDataSet.hpp>

+ + + + + + +

+Public Types

using iterator = QuantizationInputs::iterator
 
using const_iterator = QuantizationInputs::const_iterator
 
+ + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 QuantizationDataSet ()
 
 QuantizationDataSet (std::string csvFilePath)
 
 ~QuantizationDataSet ()
 
bool IsEmpty () const
 
iterator begin ()
 
iterator end ()
 
const_iterator begin () const
 
const_iterator end () const
 
const_iterator cbegin () const
 
const_iterator cend () const
 
+

Detailed Description

+

QuantizationDataSet is a structure which is created after parsing a quantization CSV file.

+

It contains records of filenames which contain refinement data per pass ID for binding ID.

+ +

Definition at line 18 of file QuantizationDataSet.hpp.

+

Member Typedef Documentation

+ +

◆ const_iterator

+ +
+
+ + + + +
using const_iterator = QuantizationInputs::const_iterator
+
+ +

Definition at line 24 of file QuantizationDataSet.hpp.

+ +
+
+ +

◆ iterator

+ +
+
+ + + + +
using iterator = QuantizationInputs::iterator
+
+ +

Definition at line 23 of file QuantizationDataSet.hpp.

+ +
+
+

Constructor & Destructor Documentation

+ +

◆ QuantizationDataSet() [1/2]

+ +
+
+ + + + + + + +
QuantizationDataSet ()
+
+ +

Definition at line 19 of file QuantizationDataSet.cpp.

+
20 {
21 }
+
+
+ +

◆ QuantizationDataSet() [2/2]

+ +
+
+ + + + + + + + +
QuantizationDataSet (std::string csvFilePath)
+
+ +

Definition at line 23 of file QuantizationDataSet.cpp.

+
23  :
24  m_QuantizationInputs(),
25  m_CsvFilePath(csvFilePath)
26 {
27  ParseCsvFile();
28 }
+
+
+ +

◆ ~QuantizationDataSet()

+ +
+
+ + + + + + + +
~QuantizationDataSet ()
+
+ +

Definition at line 48 of file QuantizationDataSet.cpp.

+
49 {
50 }
+
+
+

Member Function Documentation

+ +

◆ begin() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
iterator begin ()
+
+inline
+
+ +

Definition at line 31 of file QuantizationDataSet.hpp.

+
31 { return m_QuantizationInputs.begin(); }
+
+
+ +

◆ begin() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
const_iterator begin () const
+
+inline
+
+ +

Definition at line 33 of file QuantizationDataSet.hpp.

+
33 { return m_QuantizationInputs.begin(); }
+
+
+ +

◆ cbegin()

+ +
+
+ + + + + +
+ + + + + + + +
const_iterator cbegin () const
+
+inline
+
+ +

Definition at line 35 of file QuantizationDataSet.hpp.

+
35 { return m_QuantizationInputs.cbegin(); }
+
+
+ +

◆ cend()

+ +
+
+ + + + + +
+ + + + + + + +
const_iterator cend () const
+
+inline
+
+ +

Definition at line 36 of file QuantizationDataSet.hpp.

+
36 { return m_QuantizationInputs.cend(); }
+
+
+ +

◆ end() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
iterator end ()
+
+inline
+
+ +

Definition at line 32 of file QuantizationDataSet.hpp.

+
32 { return m_QuantizationInputs.end(); }
+
+
+ +

◆ end() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
const_iterator end () const
+
+inline
+
+ +

Definition at line 34 of file QuantizationDataSet.hpp.

+
34 { return m_QuantizationInputs.end(); }
+
+
+ +

◆ IsEmpty()

+ +
+
+ + + + + +
+ + + + + + + +
bool IsEmpty () const
+
+inline
+
+ +

Definition at line 29 of file QuantizationDataSet.hpp.

+ +

Referenced by BOOST_FIXTURE_TEST_CASE(), CommandLineProcessor::HasQuantizationData(), and main().

+
29 {return m_QuantizationInputs.empty();}
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1