From 96becb7e4f5f510344c3850278a706d63a564fc4 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 16 Jun 2020 12:41:49 +0100 Subject: Revert "IVGCVSW-3726 Upload ArmNN Doxygen files" This reverts commit de36e4a9c299028e792c3a5bd99ad0816d806077. Signed-off-by: Jan Eilers Change-Id: Idbf20c12ea07583ca552d7cc7fb517fbadc73fff --- Documentation/_layer_test_result_8hpp.xhtml | 158 ---------------------------- 1 file changed, 158 deletions(-) delete mode 100644 Documentation/_layer_test_result_8hpp.xhtml (limited to 'Documentation/_layer_test_result_8hpp.xhtml') diff --git a/Documentation/_layer_test_result_8hpp.xhtml b/Documentation/_layer_test_result_8hpp.xhtml deleted file mode 100644 index ae49ff103c..0000000000 --- a/Documentation/_layer_test_result_8hpp.xhtml +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - -ArmNN: src/backends/backendsCommon/test/layerTests/LayerTestResult.hpp File Reference - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
LayerTestResult.hpp File Reference
-
-
-
#include <armnn/Tensor.hpp>
-#include <boost/multi_array.hpp>
-#include <cstddef>
-
-

Go to the source code of this file.

- - - - -

-Classes

struct  LayerTestResult< T, n >
 
- - - - -

-Functions

template<std::size_t n>
boost::array< unsigned int, n > GetTensorShapeAsArray (const armnn::TensorInfo &tensorInfo)
 
-

Function Documentation

- -

◆ GetTensorShapeAsArray()

- -
-
- - - - - - - - -
boost::array<unsigned int, n> GetTensorShapeAsArray (const armnn::TensorInfotensorInfo)
-
- -

Definition at line 15 of file LayerTestResult.hpp.

- -

References TensorInfo::GetNumDimensions(), and TensorInfo::GetShape().

-
16 {
17  BOOST_ASSERT_MSG(n == tensorInfo.GetNumDimensions(),
18  "Attempting to construct a shape array of mismatching size");
19 
20  boost::array<unsigned int, n> shape;
21  for (unsigned int i = 0; i < n; i++)
22  {
23  shape[i] = tensorInfo.GetShape()[i];
24  }
25  return shape;
26 }
const TensorShape & GetShape() const
Definition: Tensor.hpp:88
-
unsigned int GetNumDimensions() const
Definition: Tensor.hpp:92
-
-
-
-
-
- - - - -- cgit v1.2.1