From fb14ebbd68e04876809145296af96f6f41857418 Mon Sep 17 00:00:00 2001 From: James Ward Date: Thu, 26 Nov 2020 11:08:12 +0000 Subject: IVGCVSW-5348 Update Doxygen Docu * Update Doxygen Documentation for 20.11 release Signed-off-by: James Ward Change-Id: Ib47edac7923a642a277b1169d1085e5622021dc0 --- ...r_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml | 231 +++++++++++++++++++++ 1 file changed, 231 insertions(+) create mode 100644 20.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml (limited to '20.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml') diff --git a/20.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml b/20.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml new file mode 100644 index 0000000000..ef87da72d4 --- /dev/null +++ b/20.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml @@ -0,0 +1,231 @@ + + + + + + + + + + + + + +ArmNN: SelectiveQuantizer< armnn::BFloat16, false > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SelectiveQuantizer< armnn::BFloat16, false > Struct Template Reference
+
+
+ +

#include <QuantizeHelper.hpp>

+ + + + + + +

+Static Public Member Functions

static armnn::BFloat16 Quantize (float value, float scale, int32_t offset)
 
static float Dequantize (armnn::BFloat16 value, float scale, int32_t offset)
 
+

Detailed Description

+

template<>
+struct armnnUtils::SelectiveQuantizer< armnn::BFloat16, false >

+ + +

Definition at line 69 of file QuantizeHelper.hpp.

+

Member Function Documentation

+ +

◆ Dequantize()

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

Definition at line 77 of file QuantizeHelper.hpp.

+ +

References armnn::IgnoreUnused().

+
78  {
79  armnn::IgnoreUnused(scale, offset);
80  return value;
81  }
void IgnoreUnused(Ts &&...)
+
+
+
+ +

◆ Quantize()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
static armnn::BFloat16 Quantize (float value,
float scale,
int32_t offset 
)
+
+inlinestatic
+
+ +

Definition at line 71 of file QuantizeHelper.hpp.

+ +

References armnn::IgnoreUnused().

+
72  {
73  armnn::IgnoreUnused(scale, offset);
74  return armnn::BFloat16(value);
75  }
+
void IgnoreUnused(Ts &&...)
+
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1