From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/structarmnn_1_1minimum.xhtml | 180 +++++++++++++++++++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 20.02/structarmnn_1_1minimum.xhtml (limited to '20.02/structarmnn_1_1minimum.xhtml') diff --git a/20.02/structarmnn_1_1minimum.xhtml b/20.02/structarmnn_1_1minimum.xhtml new file mode 100644 index 0000000000..d431714421 --- /dev/null +++ b/20.02/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