From cb0630959aeae05bc2ae9f6d80cf5f5983a8fb77 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 23 Nov 2022 11:05:29 +0000 Subject: IVGCVSW-7075 Update Doxygen for 22.11 Release Signed-off-by: Nikhil Raj Change-Id: Ib5669e8fd3739d1b10f5dd694d020d51799896dc --- ...ntizer_3_01armnn_1_1_half_00_01false_01_4.xhtml | 231 +++++++++++++++++++++ 1 file changed, 231 insertions(+) create mode 100644 22.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_half_00_01false_01_4.xhtml (limited to '22.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_half_00_01false_01_4.xhtml') diff --git a/22.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_half_00_01false_01_4.xhtml b/22.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_half_00_01false_01_4.xhtml new file mode 100644 index 0000000000..c8d6abfd39 --- /dev/null +++ b/22.11/structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_half_00_01false_01_4.xhtml @@ -0,0 +1,231 @@ + + + + + + + + + + + + + +ArmNN: SelectiveQuantizer< armnn::Half, false > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SelectiveQuantizer< armnn::Half, false > Struct Template Reference
+
+
+ +

#include <QuantizeHelper.hpp>

+ + + + + + +

+Static Public Member Functions

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

Detailed Description

+

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

+ + +

Definition at line 53 of file QuantizeHelper.hpp.

+

Member Function Documentation

+ +

◆ Dequantize()

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

Definition at line 61 of file QuantizeHelper.hpp.

+ +

References armnn::IgnoreUnused().

+
62  {
63  armnn::IgnoreUnused(scale, offset);
64  return value;
65  }
void IgnoreUnused(Ts &&...)
+
+
+
+ +

◆ Quantize()

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

Definition at line 55 of file QuantizeHelper.hpp.

+ +

References armnn::IgnoreUnused().

+
56  {
57  armnn::IgnoreUnused(scale, offset);
58  return armnn::Half(value);
59  }
void IgnoreUnused(Ts &&...)
+
half_float::half Half
Definition: Half.hpp:22
+
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1