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_parser_2test_2_maximum_8cpp.xhtml | 255 +++++++++++++++++++++++ 1 file changed, 255 insertions(+) create mode 100644 21.02/armnn_tf_parser_2test_2_maximum_8cpp.xhtml (limited to '21.02/armnn_tf_parser_2test_2_maximum_8cpp.xhtml') diff --git a/21.02/armnn_tf_parser_2test_2_maximum_8cpp.xhtml b/21.02/armnn_tf_parser_2test_2_maximum_8cpp.xhtml new file mode 100644 index 0000000000..9eb31a7094 --- /dev/null +++ b/21.02/armnn_tf_parser_2test_2_maximum_8cpp.xhtml @@ -0,0 +1,255 @@ + + + + + + + + + + + + + +ArmNN: src/armnnTfParser/test/Maximum.cpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Maximum.cpp File Reference
+
+
+
#include <boost/test/unit_test.hpp>
+#include "armnnTfParser/ITfParser.hpp"
+#include "ParserPrototxtFixture.hpp"
+
+

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

 BOOST_FIXTURE_TEST_CASE (ParseMaximum4D4D, MaximumFixture4D4D)
 
 BOOST_FIXTURE_TEST_CASE (ParseMaximumBroadcast4D4D, MaximumBroadcastFixture4D4D)
 
 BOOST_FIXTURE_TEST_CASE (ParseMaximumBroadcast4D1D, MaximumBroadcastFixture4D1D)
 
 BOOST_FIXTURE_TEST_CASE (ParseMaximumBroadcast1D4D, MaximumBroadcastFixture1D4D)
 
+

Function Documentation

+ +

◆ BOOST_FIXTURE_TEST_CASE() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParseMaximum4D4D ,
MaximumFixture4D4D  
)
+
+ +

Definition at line 76 of file Maximum.cpp.

+
77 {
78  RunTest<4>({ { "input0", { 0.0f, 1.0f, 2.0f,
79  3.0f, 4.0f, 5.0f,
80  6.0f, 7.0f, 8.0f,
81  9.0f, 10.0f, 11.0f } },
82  { "input1", { 5.0f, 1.0f, 3.0f,
83  4.0f, 5.5f, 1.0f,
84  2.0f, 17.0f, 18.0f,
85  19.0f, 1.0f, 3.0f } } },
86  { { "output", { 5.0f, 1.0f, 3.0f,
87  4.0f, 5.5f, 5.0f,
88  6.0f, 17.0f, 18.0f,
89  19.0f, 10.0f, 11.0f } } });
90 }
+
+
+ +

◆ BOOST_FIXTURE_TEST_CASE() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParseMaximumBroadcast4D4D ,
MaximumBroadcastFixture4D4D  
)
+
+ +

Definition at line 97 of file Maximum.cpp.

+
98 {
99  RunTest<4>({ { "input0", { 2.0f, 4.0f } },
100  { "input1", { 1.0f, 2.0f, 3.0f,
101  4.0f, 5.0f, 6.0f } } },
102  { { "output", { 2.0f, 2.0f, 3.0f,
103  4.0f, 4.0f, 4.0f,
104  4.0f, 5.0f, 6.0f,
105  4.0f, 5.0f, 6.0f } } });
106 }
+
+
+ +

◆ BOOST_FIXTURE_TEST_CASE() [3/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParseMaximumBroadcast4D1D ,
MaximumBroadcastFixture4D1D  
)
+
+ +

Definition at line 113 of file Maximum.cpp.

+
114 {
115  RunTest<4>({ { "input0", { 0.0f, 1.0f, 2.0f,
116  3.0f, 4.0f, 5.0f,
117  6.0f, 7.0f, 8.0f,
118  9.0f, 10.0f, 11.0f } },
119  { "input1", { 5.0f } } },
120  { { "output", { 5.0f, 5.0f, 5.0f,
121  5.0f, 5.0f, 5.0f,
122  6.0f, 7.0f, 8.0f,
123  9.0f, 10.0f, 11.0f } } });
124 }
+
+
+ +

◆ BOOST_FIXTURE_TEST_CASE() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (ParseMaximumBroadcast1D4D ,
MaximumBroadcastFixture1D4D  
)
+
+ +

Definition at line 131 of file Maximum.cpp.

+ +

References BOOST_AUTO_TEST_SUITE_END().

+
132 {
133  RunTest<4>({ { "input0", { 3.0f } },
134  { "input1", { 0.0f, 1.0f, 2.0f,
135  3.0f, 4.0f, 5.0f,
136  6.0f, 7.0f, 8.0f,
137  9.0f, 10.0f, 11.0f } } },
138  { { "output", { 3.0f, 3.0f, 3.0f,
139  3.0f, 4.0f, 5.0f,
140  6.0f, 7.0f, 8.0f,
141  9.0f, 10.0f, 11.0f } } });
142 }
+
+
+
+
+ + + + -- cgit v1.2.1