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/struct_layer_test_result.xhtml | 253 +++++++++++++++++++++++++++++++++++ 1 file changed, 253 insertions(+) create mode 100644 20.02/struct_layer_test_result.xhtml (limited to '20.02/struct_layer_test_result.xhtml') diff --git a/20.02/struct_layer_test_result.xhtml b/20.02/struct_layer_test_result.xhtml new file mode 100644 index 0000000000..8de725ba0a --- /dev/null +++ b/20.02/struct_layer_test_result.xhtml @@ -0,0 +1,253 @@ + + + + + + + + + + + + + +ArmNN: LayerTestResult< T, n > Struct Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
LayerTestResult< T, n > Struct Template Reference
+
+
+ +

#include <LayerTestResult.hpp>

+ + + + +

+Public Member Functions

 LayerTestResult (const armnn::TensorInfo &outputInfo)
 
+ + + + + + + + + +

+Public Attributes

boost::multi_array< T, n > output
 
boost::multi_array< T, n > outputExpected
 
bool supported
 
bool compareBoolean
 
+

Detailed Description

+

template<typename T, std::size_t n>
+struct LayerTestResult< T, n >

+ + +

Definition at line 29 of file LayerTestResult.hpp.

+

Constructor & Destructor Documentation

+ +

◆ LayerTestResult()

+ +
+
+ + + + + +
+ + + + + + + + +
LayerTestResult (const armnn::TensorInfooutputInfo)
+
+inline
+
+ +

Definition at line 31 of file LayerTestResult.hpp.

+ +

References LayerTestResult< T, n >::compareBoolean, LayerTestResult< T, n >::output, LayerTestResult< T, n >::outputExpected, and LayerTestResult< T, n >::supported.

+
32  {
33  auto shape( GetTensorShapeAsArray<n>(outputInfo) );
34  output.resize(shape);
35  outputExpected.resize(shape);
36  supported = true;
37  compareBoolean = false;
38  }
+
boost::multi_array< T, n > outputExpected
+
boost::multi_array< T, n > output
+ +
+
+
+

Member Data Documentation

+ +

◆ compareBoolean

+ +
+
+ + + + +
bool compareBoolean
+
+
+ +

◆ output

+ + + +

◆ outputExpected

+ + + +

◆ supported

+ +
+
+ + + + +
bool supported
+
+ +

Definition at line 42 of file LayerTestResult.hpp.

+ +

Referenced by CompareTestResultIfSupported(), and LayerTestResult< T, n >::LayerTestResult().

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