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 --- ...elective_quantizer_3_01_t_00_01false_01_4.xhtml | 230 +++++++++++++++++++++ 1 file changed, 230 insertions(+) create mode 100644 21.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml (limited to '21.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml') diff --git a/21.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml b/21.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml new file mode 100644 index 0000000000..348376b38d --- /dev/null +++ b/21.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml @@ -0,0 +1,230 @@ + + + + + + + + + + + + + +ArmNN: SelectiveQuantizer< T, false > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SelectiveQuantizer< T, false > Struct Template Reference
+
+
+ +

#include <QuantizeHelper.hpp>

+ + + + + + +

+Static Public Member Functions

static T Quantize (float value, float scale, int32_t offset)
 
static float Dequantize (T value, float scale, int32_t offset)
 
+

Detailed Description

+

template<typename T>
+struct armnnUtils::SelectiveQuantizer< T, false >

+ + +

Definition at line 37 of file QuantizeHelper.hpp.

+

Member Function Documentation

+ +

◆ Dequantize()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
static float Dequantize (value,
float scale,
int32_t offset 
)
+
+inlinestatic
+
+ +

Definition at line 45 of file QuantizeHelper.hpp.

+ +

References armnn::IgnoreUnused().

+
46  {
47  armnn::IgnoreUnused(scale, offset);
48  return value;
49  }
void IgnoreUnused(Ts &&...)
+
+
+
+ +

◆ Quantize()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
static T Quantize (float value,
float scale,
int32_t offset 
)
+
+inlinestatic
+
+ +

Definition at line 39 of file QuantizeHelper.hpp.

+ +

References armnn::IgnoreUnused().

+
40  {
41  armnn::IgnoreUnused(scale, offset);
42  return value;
43  }
void IgnoreUnused(Ts &&...)
+
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1