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

+
18 {
19 }
+
+
+ +

◆ QuantizationDataSet() [2/2]

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

Definition at line 21 of file QuantizationDataSet.cpp.

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

◆ ~QuantizationDataSet()

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

Definition at line 46 of file QuantizationDataSet.cpp.

+
47 {
48 }
+
+
+

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