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 --- ...t_2_test_multi_inputs_outputs_8cpp_source.xhtml | 121 +++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 21.02/armnn_caffe_parser_2test_2_test_multi_inputs_outputs_8cpp_source.xhtml (limited to '21.02/armnn_caffe_parser_2test_2_test_multi_inputs_outputs_8cpp_source.xhtml') diff --git a/21.02/armnn_caffe_parser_2test_2_test_multi_inputs_outputs_8cpp_source.xhtml b/21.02/armnn_caffe_parser_2test_2_test_multi_inputs_outputs_8cpp_source.xhtml new file mode 100644 index 0000000000..5046521cc1 --- /dev/null +++ b/21.02/armnn_caffe_parser_2test_2_test_multi_inputs_outputs_8cpp_source.xhtml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + +ArmNN: src/armnnCaffeParser/test/TestMultiInputsOutputs.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
TestMultiInputsOutputs.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #include <boost/test/unit_test.hpp>
8 
9 BOOST_AUTO_TEST_SUITE(CaffeParser)
10 
11 struct MultiInputsOutputsFixture : public armnnUtils::ParserPrototxtFixture<armnnCaffeParser::ICaffeParser>
12 {
13  MultiInputsOutputsFixture()
14  {
15  m_Prototext = R"(
16 name: "MultiInputsOutputs"
17 layer {
18  name: "input1"
19  type: "Input"
20  top: "input1"
21  input_param { shape: { dim: 1 } }
22 }
23 layer {
24  name: "input2"
25  type: "Input"
26  top: "input2"
27  input_param { shape: { dim: 1 } }
28 }
29 layer {
30  bottom: "input1"
31  bottom: "input2"
32  top: "add1"
33  name: "add1"
34  type: "Eltwise"
35 }
36 layer {
37  bottom: "input2"
38  bottom: "input1"
39  top: "add2"
40  name: "add2"
41  type: "Eltwise"
42 }
43  )";
44  Setup({ }, { "add1", "add2" });
45  }
46 };
47 
48 BOOST_FIXTURE_TEST_CASE(MultiInputsOutputs, MultiInputsOutputsFixture)
49 {
50  RunTest<1>({ { "input1",{ 12.0f } },{ "input2",{ 13.0f } } },
51  { { "add1",{ 25.0f } },{ "add2",{ 25.0f } } });
52 }
53 
BOOST_AUTO_TEST_SUITE(TensorflowLiteParser)
+ +
BOOST_FIXTURE_TEST_CASE(MultiInputsOutputs, MultiInputsOutputsFixture)
+ +
BOOST_AUTO_TEST_SUITE_END()
+ + + +
+
+ + + + -- cgit v1.2.1