blob: 5e485812bbd682b940615f6151eab699c5d135a5 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>ArmNN: src/armnnQuantizer/CommandLineProcessor.hpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">ArmNN
&#160;<span id="projectnumber">NotReleased</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('src_2armnn_quantizer_2_command_line_processor_8hpp_source.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">CommandLineProcessor.hpp</div> </div>
</div><!--header-->
<div class="contents">
<a href="src_2armnn_quantizer_2_command_line_processor_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="comment">//</span></div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="comment">// Copyright © 2017 Arm Ltd. All rights reserved.</span></div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="comment">// SPDX-License-Identifier: MIT</span></div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="comment">//</span></div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="preprocessor">#pragma once</span></div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;</div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="preprocessor">#include &lt;string&gt;</span></div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="preprocessor">#include &lt;iostream&gt;</span></div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;<span class="preprocessor">#include &lt;vector&gt;</span></div><div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;<span class="preprocessor">#include &quot;<a class="code" href="_quantization_data_set_8hpp.html">QuantizationDataSet.hpp</a>&quot;</span></div><div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;</div><div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;<span class="keyword">namespace </span><a class="code" href="namespacearmnn_quantizer.html">armnnQuantizer</a></div><div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;{</div><div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;</div><div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="comment">// parses the command line to extract</span></div><div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;<span class="comment">// * the input file -f containing the serialized fp32 ArmNN input graph (must exist...and be a input graph file)</span></div><div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="comment">// * the csv file -c &lt;optional&gt; detailing the paths for RAW input tensors to use for refinement</span></div><div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="comment">// * the directory -d to place the output file into (must already exist and be writable)</span></div><div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="comment">// * the name of the file -o the quantized ArmNN input graph will be written to (must not already exist)</span></div><div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;<span class="comment">// * LATER: the min and max overrides to be applied to the inputs</span></div><div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="comment">// specified as -i &lt;int&gt; (input id) -n &lt;float&gt; (minimum) -x &lt;float&gt; (maximum)</span></div><div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;<span class="comment">// multiple sets of -i, -n, -x can appear on the command line but they must match</span></div><div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="comment">// in number i.e. a -n and -x for each -i and the id of the input must correspond</span></div><div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;<span class="comment">// to an input layer in the fp32 graph when it is loaded.</span></div><div class="line"><a name="l00025"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html"> 25</a></span>&#160;<span class="keyword">class </span><a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html">CommandLineProcessor</a></div><div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;{</div><div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;<span class="keyword">public</span>:</div><div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160; <span class="keywordtype">bool</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a2f7e28f477647e992871d50e7b793221">ProcessCommandLine</a>(<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span>* argv[]);</div><div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;</div><div class="line"><a name="l00030"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a71f5ab806743bf42f0556299af110015"> 30</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a71f5ab806743bf42f0556299af110015">GetInputFileName</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a7d1dcf01fee1566cbab614e2fbd3aebd">m_InputFileName</a>;}</div><div class="line"><a name="l00031"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a2e9f3f315ce159881394511e49b827b2"> 31</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a2e9f3f315ce159881394511e49b827b2">GetCsvFileName</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a63a5c903eaabd717af1512ab5125af8d">m_CsvFileName</a>;}</div><div class="line"><a name="l00032"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#aa33615da82b80ab2e379d7b2069e3644"> 32</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#aa33615da82b80ab2e379d7b2069e3644">GetCsvFileDirectory</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a7baaa17e2c06d703583ba8da8b53b43c">m_CsvFileDirectory</a>;}</div><div class="line"><a name="l00033"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a4358b78a2efe952366bc32b0d54e663e"> 33</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a4358b78a2efe952366bc32b0d54e663e">GetOutputDirectoryName</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#aa64986ca8573f32773a8ab4d13c4984d">m_OutputDirectory</a>;}</div><div class="line"><a name="l00034"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a98ba4e2ee687673cbf7546788c8ea099"> 34</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a98ba4e2ee687673cbf7546788c8ea099">GetOutputFileName</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#adf3d6dfc2019b8ce0c84e3eea7ae845e">m_OutputFileName</a>;}</div><div class="line"><a name="l00035"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a65f6aca5479ebf0814123ff8f1a528e3"> 35</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a65f6aca5479ebf0814123ff8f1a528e3">GetQuantizationScheme</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a39b10d2bffdb22af36545d10bf205c26">m_QuantizationScheme</a>;}</div><div class="line"><a name="l00036"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#ab15c4ff152f368723ed71c2bb5a89be9"> 36</a></span>&#160; <a class="code" href="classarmnn_quantizer_1_1_quantization_data_set.html">QuantizationDataSet</a> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#ab15c4ff152f368723ed71c2bb5a89be9">GetQuantizationDataSet</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#ab8c73d68c76881021059a2a06526d0fa">m_QuantizationDataSet</a>;}</div><div class="line"><a name="l00037"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#af84a4d480d3705770b752645816f1cfb"> 37</a></span>&#160; <span class="keywordtype">bool</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#af84a4d480d3705770b752645816f1cfb">HasPreservedDataType</a>() {<span class="keywordflow">return</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a8c679cfea9ed505165ba3fd5564f433c">m_PreserveDataType</a>;}</div><div class="line"><a name="l00038"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a1bb287242ae5ec2837a77f083c27a2ac"> 38</a></span>&#160; <span class="keywordtype">bool</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a1bb287242ae5ec2837a77f083c27a2ac">HasQuantizationData</a>() {<span class="keywordflow">return</span> !<a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#ab8c73d68c76881021059a2a06526d0fa">m_QuantizationDataSet</a>.<a class="code" href="classarmnn_quantizer_1_1_quantization_data_set.html#a8e12342fc420701fbffd97025421575a">IsEmpty</a>();}</div><div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;</div><div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;<span class="keyword">protected</span>:</div><div class="line"><a name="l00041"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a7d1dcf01fee1566cbab614e2fbd3aebd"> 41</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a7d1dcf01fee1566cbab614e2fbd3aebd">m_InputFileName</a>;</div><div class="line"><a name="l00042"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a63a5c903eaabd717af1512ab5125af8d"> 42</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a63a5c903eaabd717af1512ab5125af8d">m_CsvFileName</a>;</div><div class="line"><a name="l00043"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a7baaa17e2c06d703583ba8da8b53b43c"> 43</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a7baaa17e2c06d703583ba8da8b53b43c">m_CsvFileDirectory</a>;</div><div class="line"><a name="l00044"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#aa64986ca8573f32773a8ab4d13c4984d"> 44</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#aa64986ca8573f32773a8ab4d13c4984d">m_OutputDirectory</a>;</div><div class="line"><a name="l00045"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#adf3d6dfc2019b8ce0c84e3eea7ae845e"> 45</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#adf3d6dfc2019b8ce0c84e3eea7ae845e">m_OutputFileName</a>;</div><div class="line"><a name="l00046"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a39b10d2bffdb22af36545d10bf205c26"> 46</a></span>&#160; std::string <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a39b10d2bffdb22af36545d10bf205c26">m_QuantizationScheme</a>;</div><div class="line"><a name="l00047"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#ab8c73d68c76881021059a2a06526d0fa"> 47</a></span>&#160; <a class="code" href="classarmnn_quantizer_1_1_quantization_data_set.html">QuantizationDataSet</a> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#ab8c73d68c76881021059a2a06526d0fa">m_QuantizationDataSet</a>;</div><div class="line"><a name="l00048"></a><span class="lineno"><a class="line" href="classarmnn_quantizer_1_1_command_line_processor.html#a8c679cfea9ed505165ba3fd5564f433c"> 48</a></span>&#160; <span class="keywordtype">bool</span> <a class="code" href="classarmnn_quantizer_1_1_command_line_processor.html#a8c679cfea9ed505165ba3fd5564f433c">m_PreserveDataType</a>;</div><div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;};</div><div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;</div><div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;} <span class="comment">// namespace armnnQuantizer</span></div><div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160;</div><div class="ttc" id="classarmnn_quantizer_1_1_quantization_data_set_html_a8e12342fc420701fbffd97025421575a"><div class="ttname"><a href="classarmnn_quantizer_1_1_quantization_data_set.html#a8e12342fc420701fbffd97025421575a">armnnQuantizer::QuantizationDataSet::IsEmpty</a></div><div class="ttdeci">bool IsEmpty() const</div><div class="ttdef"><b>Definition:</b> <a href="_quantization_data_set_8hpp_source.html#l00029">QuantizationDataSet.hpp:29</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html">armnnQuantizer::CommandLineProcessor</a></div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00025">CommandLineProcessor.hpp:25</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a2f7e28f477647e992871d50e7b793221"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a2f7e28f477647e992871d50e7b793221">armnnQuantizer::CommandLineProcessor::ProcessCommandLine</a></div><div class="ttdeci">bool ProcessCommandLine(int argc, char *argv[])</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8cpp_source.html#l00085">CommandLineProcessor.cpp:85</a></div></div>
<div class="ttc" id="namespacearmnn_quantizer_html"><div class="ttname"><a href="namespacearmnn_quantizer.html">armnnQuantizer</a></div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8cpp_source.html#l00014">CommandLineProcessor.cpp:14</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a98ba4e2ee687673cbf7546788c8ea099"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a98ba4e2ee687673cbf7546788c8ea099">armnnQuantizer::CommandLineProcessor::GetOutputFileName</a></div><div class="ttdeci">std::string GetOutputFileName()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00034">CommandLineProcessor.hpp:34</a></div></div>
<div class="ttc" id="_quantization_data_set_8hpp_html"><div class="ttname"><a href="_quantization_data_set_8hpp.html">QuantizationDataSet.hpp</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a2e9f3f315ce159881394511e49b827b2"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a2e9f3f315ce159881394511e49b827b2">armnnQuantizer::CommandLineProcessor::GetCsvFileName</a></div><div class="ttdeci">std::string GetCsvFileName()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00031">CommandLineProcessor.hpp:31</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_aa33615da82b80ab2e379d7b2069e3644"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#aa33615da82b80ab2e379d7b2069e3644">armnnQuantizer::CommandLineProcessor::GetCsvFileDirectory</a></div><div class="ttdeci">std::string GetCsvFileDirectory()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00032">CommandLineProcessor.hpp:32</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a7d1dcf01fee1566cbab614e2fbd3aebd"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a7d1dcf01fee1566cbab614e2fbd3aebd">armnnQuantizer::CommandLineProcessor::m_InputFileName</a></div><div class="ttdeci">std::string m_InputFileName</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00041">CommandLineProcessor.hpp:41</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_af84a4d480d3705770b752645816f1cfb"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#af84a4d480d3705770b752645816f1cfb">armnnQuantizer::CommandLineProcessor::HasPreservedDataType</a></div><div class="ttdeci">bool HasPreservedDataType()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00037">CommandLineProcessor.hpp:37</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a8c679cfea9ed505165ba3fd5564f433c"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a8c679cfea9ed505165ba3fd5564f433c">armnnQuantizer::CommandLineProcessor::m_PreserveDataType</a></div><div class="ttdeci">bool m_PreserveDataType</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00048">CommandLineProcessor.hpp:48</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a39b10d2bffdb22af36545d10bf205c26"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a39b10d2bffdb22af36545d10bf205c26">armnnQuantizer::CommandLineProcessor::m_QuantizationScheme</a></div><div class="ttdeci">std::string m_QuantizationScheme</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00046">CommandLineProcessor.hpp:46</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a7baaa17e2c06d703583ba8da8b53b43c"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a7baaa17e2c06d703583ba8da8b53b43c">armnnQuantizer::CommandLineProcessor::m_CsvFileDirectory</a></div><div class="ttdeci">std::string m_CsvFileDirectory</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00043">CommandLineProcessor.hpp:43</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a65f6aca5479ebf0814123ff8f1a528e3"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a65f6aca5479ebf0814123ff8f1a528e3">armnnQuantizer::CommandLineProcessor::GetQuantizationScheme</a></div><div class="ttdeci">std::string GetQuantizationScheme()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00035">CommandLineProcessor.hpp:35</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a4358b78a2efe952366bc32b0d54e663e"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a4358b78a2efe952366bc32b0d54e663e">armnnQuantizer::CommandLineProcessor::GetOutputDirectoryName</a></div><div class="ttdeci">std::string GetOutputDirectoryName()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00033">CommandLineProcessor.hpp:33</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_quantization_data_set_html"><div class="ttname"><a href="classarmnn_quantizer_1_1_quantization_data_set.html">armnnQuantizer::QuantizationDataSet</a></div><div class="ttdef"><b>Definition:</b> <a href="_quantization_data_set_8hpp_source.html#l00018">QuantizationDataSet.hpp:18</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_adf3d6dfc2019b8ce0c84e3eea7ae845e"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#adf3d6dfc2019b8ce0c84e3eea7ae845e">armnnQuantizer::CommandLineProcessor::m_OutputFileName</a></div><div class="ttdeci">std::string m_OutputFileName</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00045">CommandLineProcessor.hpp:45</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a1bb287242ae5ec2837a77f083c27a2ac"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a1bb287242ae5ec2837a77f083c27a2ac">armnnQuantizer::CommandLineProcessor::HasQuantizationData</a></div><div class="ttdeci">bool HasQuantizationData()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00038">CommandLineProcessor.hpp:38</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_ab15c4ff152f368723ed71c2bb5a89be9"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#ab15c4ff152f368723ed71c2bb5a89be9">armnnQuantizer::CommandLineProcessor::GetQuantizationDataSet</a></div><div class="ttdeci">QuantizationDataSet GetQuantizationDataSet()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00036">CommandLineProcessor.hpp:36</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_aa64986ca8573f32773a8ab4d13c4984d"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#aa64986ca8573f32773a8ab4d13c4984d">armnnQuantizer::CommandLineProcessor::m_OutputDirectory</a></div><div class="ttdeci">std::string m_OutputDirectory</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00044">CommandLineProcessor.hpp:44</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a63a5c903eaabd717af1512ab5125af8d"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a63a5c903eaabd717af1512ab5125af8d">armnnQuantizer::CommandLineProcessor::m_CsvFileName</a></div><div class="ttdeci">std::string m_CsvFileName</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00042">CommandLineProcessor.hpp:42</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_a71f5ab806743bf42f0556299af110015"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#a71f5ab806743bf42f0556299af110015">armnnQuantizer::CommandLineProcessor::GetInputFileName</a></div><div class="ttdeci">std::string GetInputFileName()</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00030">CommandLineProcessor.hpp:30</a></div></div>
<div class="ttc" id="classarmnn_quantizer_1_1_command_line_processor_html_ab8c73d68c76881021059a2a06526d0fa"><div class="ttname"><a href="classarmnn_quantizer_1_1_command_line_processor.html#ab8c73d68c76881021059a2a06526d0fa">armnnQuantizer::CommandLineProcessor::m_QuantizationDataSet</a></div><div class="ttdeci">QuantizationDataSet m_QuantizationDataSet</div><div class="ttdef"><b>Definition:</b> <a href="src_2armnn_quantizer_2_command_line_processor_8hpp_source.html#l00047">CommandLineProcessor.hpp:47</a></div></div>
</div><!-- fragment --></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="dir_0de8a5774692585e465aba8075a97653.html">armnnQuantizer</a></li><li class="navelem"><a class="el" href="src_2armnn_quantizer_2_command_line_processor_8hpp.html">CommandLineProcessor.hpp</a></li>
<li class="footer">Generated on Fri Mar 13 2020 16:06:55 for ArmNN by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>