From 0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 19 Mar 2020 17:03:14 +0000 Subject: Creating gh-pages documentation for ArmNN Signed-off-by: Jim Flynn --- Documentation/structarmnn_1_1minimum.xhtml | 180 +++++++++++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 Documentation/structarmnn_1_1minimum.xhtml (limited to 'Documentation/structarmnn_1_1minimum.xhtml') diff --git a/Documentation/structarmnn_1_1minimum.xhtml b/Documentation/structarmnn_1_1minimum.xhtml new file mode 100644 index 0000000000..d431714421 --- /dev/null +++ b/Documentation/structarmnn_1_1minimum.xhtml @@ -0,0 +1,180 @@ + + + + + + + + + + + + + +ArmNN: minimum< T > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
minimum< T > Struct Template Reference
+
+
+ +

#include <Minimum.hpp>

+
+Inheritance diagram for minimum< T >:
+
+
+ + + +
+ + + + +

+Public Member Functions

operator() (const T &input1, const T &input2) const
 
+

Detailed Description

+

template<typename T>
+struct armnn::minimum< T >

+ + +

Definition at line 12 of file Minimum.hpp.

+

Member Function Documentation

+ +

◆ operator()()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
T operator() (const T & input1,
const T & input2 
) const
+
+inline
+
+ +

Definition at line 15 of file Minimum.hpp.

+
16  {
17  return std::min(input1, input2);
18  }
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1