From 8d2ca734165a068478df7cffa46185680b05cd20 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 24 Feb 2023 10:28:19 +0000 Subject: Update Doxygen docu for 23.02 Signed-off-by: Nikhil Raj Change-Id: Ie6c19a27d50fefab2796b2b5875374e81f5bf971 --- ...elective_quantizer_3_01_t_00_01false_01_4.xhtml | 230 +++++++++++++++++++++ 1 file changed, 230 insertions(+) create mode 100644 23.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml (limited to '23.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml') diff --git a/23.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml b/23.02/structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml new file mode 100644 index 0000000000..99a3e90b0e --- /dev/null +++ b/23.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 + + + +
+
+  23.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