From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/armnn_tf_lite_parser_2test_2_pad_8cpp.xhtml | 225 ++++++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 21.02/armnn_tf_lite_parser_2test_2_pad_8cpp.xhtml (limited to '21.02/armnn_tf_lite_parser_2test_2_pad_8cpp.xhtml') diff --git a/21.02/armnn_tf_lite_parser_2test_2_pad_8cpp.xhtml b/21.02/armnn_tf_lite_parser_2test_2_pad_8cpp.xhtml new file mode 100644 index 0000000000..134b49de6f --- /dev/null +++ b/21.02/armnn_tf_lite_parser_2test_2_pad_8cpp.xhtml @@ -0,0 +1,225 @@ + + + + + + + + + + + + + +ArmNN: src/armnnTfLiteParser/test/Pad.cpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Pad.cpp File Reference
+
+
+
#include <boost/test/unit_test.hpp>
+#include "ParserFlatbuffersFixture.hpp"
+#include "../TfLiteParser.hpp"
+#include <string>
+#include <iostream>
+
+

Go to the source code of this file.

+ + + + + + + + +

+Functions

 BOOST_FIXTURE_TEST_CASE (ParsePad, SimplePadFixture)
 
 BOOST_FIXTURE_TEST_CASE (ParsePadUint8, Uint8PadFixture)
 
 BOOST_FIXTURE_TEST_CASE (ParsePadInt8, Int8PadFixture)
 
+

Function Documentation

+ +

◆ BOOST_FIXTURE_TEST_CASE() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParsePad ,
SimplePadFixture  
)
+
+ +

Definition at line 96 of file Pad.cpp.

+
97 {
98  RunTest<2, armnn::DataType::Float32>
99  (0,
100  {{ "inputTensor", { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f }}},
101  {{ "outputTensor", { 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f,
102  0.0f, 0.0f, 1.0f, 2.0f, 3.0f, 0.0f, 0.0f,
103  0.0f, 0.0f, 4.0f, 5.0f, 6.0f, 0.0f, 0.0f,
104  0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f }}});
105 }
+
+
+ +

◆ BOOST_FIXTURE_TEST_CASE() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParsePadUint8 ,
Uint8PadFixture  
)
+
+ +

Definition at line 114 of file Pad.cpp.

+
115 {
116  RunTest<2, armnn::DataType::QAsymmU8>
117  (0,
118  {{ "inputTensor", { 1, 2, 3, 4, 5, 6 }}},
119  {{ "outputTensor", { 3, 3, 3, 3, 3, 3, 3,
120  3, 3, 1, 2, 3, 3, 3,
121  3, 3, 4, 5, 6, 3, 3,
122  3, 3, 3, 3, 3, 3, 3 }}});
123 }
+
+
+ +

◆ BOOST_FIXTURE_TEST_CASE() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParsePadInt8 ,
Int8PadFixture  
)
+
+ +

Definition at line 132 of file Pad.cpp.

+ +

References BOOST_AUTO_TEST_SUITE_END().

+
133 {
134  RunTest<2, armnn::DataType::QAsymmS8>
135  (0,
136  {{ "inputTensor", { 1, -2, 3, 4, 5, -6 }}},
137  {{ "outputTensor", { 3, 3, 3, 3, 3, 3, 3,
138  3, 3, 1, -2, 3, 3, 3,
139  3, 3, 4, 5, -6, 3, 3,
140  3, 3, 3, 3, 3, 3, 3 }}});
141 }
+
+
+
+
+ + + + -- cgit v1.2.1