From 7bfd38a721360183f3392f9ab35db18a0dd7fef8 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 19 Aug 2022 15:23:36 +0100 Subject: Update Doxygen for 22.08 Release Signed-off-by: Nikhil Raj Change-Id: I4789fe868e0492839be1482e5cee3642ed90d756 --- 22.08/structarmnn_1_1_fill_descriptor.xhtml | 267 ++++++++++++++++++++++++++++ 1 file changed, 267 insertions(+) create mode 100644 22.08/structarmnn_1_1_fill_descriptor.xhtml (limited to '22.08/structarmnn_1_1_fill_descriptor.xhtml') diff --git a/22.08/structarmnn_1_1_fill_descriptor.xhtml b/22.08/structarmnn_1_1_fill_descriptor.xhtml new file mode 100644 index 0000000000..103e4f7e5a --- /dev/null +++ b/22.08/structarmnn_1_1_fill_descriptor.xhtml @@ -0,0 +1,267 @@ + + + + + + + + + + + + + +ArmNN: FillDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
FillDescriptor Struct Reference
+
+
+ +

A FillDescriptor for the FillLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for FillDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + + + + + + + + +

+Public Member Functions

 FillDescriptor ()
 
 FillDescriptor (const float &value)
 
bool operator== (const FillDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 
+ + + +

+Public Attributes

float m_Value
 
+

Detailed Description

+

A FillDescriptor for the FillLayer.

+ +

Definition at line 886 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ FillDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
FillDescriptor ()
+
+inline
+
+ +

Definition at line 888 of file Descriptors.hpp.

+
889  : m_Value(0)
890  {}
+
+
+
+ +

◆ FillDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + +
FillDescriptor (const float & value)
+
+inline
+
+ +

Definition at line 892 of file Descriptors.hpp.

+
893  : m_Value(value)
894  {}
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const FillDescriptorrhs) const
+
+inline
+
+ +

Definition at line 896 of file Descriptors.hpp.

+ +

References FillDescriptor::m_Value.

+
897  {
898  return m_Value == rhs.m_Value;
899  }
+
+
+
+

Member Data Documentation

+ +

◆ m_Value

+ + +
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1