aboutsummaryrefslogtreecommitdiff
path: root/src/armnnCaffeParser/test/TestConcat.cpp
diff options
context:
space:
mode:
authortelsoa01 <telmo.soares@arm.com>2018-03-09 14:13:49 +0000
committertelsoa01 <telmo.soares@arm.com>2018-03-09 14:13:49 +0000
commit4fcda0101ec3d110c1d6d7bee5c83416b645528a (patch)
treec9a70aeb2887006160c1b3d265c27efadb7bdbae /src/armnnCaffeParser/test/TestConcat.cpp
downloadarmnn-4fcda0101ec3d110c1d6d7bee5c83416b645528a.tar.gz
Release 18.02
Change-Id: Id3c11dc5ee94ef664374a988fcc6901e9a232fa6
Diffstat (limited to 'src/armnnCaffeParser/test/TestConcat.cpp')
-rw-r--r--src/armnnCaffeParser/test/TestConcat.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/armnnCaffeParser/test/TestConcat.cpp b/src/armnnCaffeParser/test/TestConcat.cpp
new file mode 100644
index 0000000000..441c28c837
--- /dev/null
+++ b/src/armnnCaffeParser/test/TestConcat.cpp
@@ -0,0 +1,73 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#include <boost/test/unit_test.hpp>
+#include "armnnCaffeParser/ICaffeParser.hpp"
+#include "ParserPrototxtFixture.hpp"
+
+BOOST_AUTO_TEST_SUITE(CaffeParser)
+
+struct ConcatFixture : public ParserPrototxtFixture<armnnCaffeParser::ICaffeParser>
+{
+ ConcatFixture()
+ {
+ m_Prototext = "name: \"Concat\"\n"
+ "layer {\n"
+ " name: \"data\"\n"
+ " type: \"Input\"\n"
+ " top: \"data\"\n"
+ " input_param { shape: { dim: 1 dim: 1 dim: 4 dim: 4 } }\n"
+ "}\n"
+ "layer {\n"
+ " bottom: \"data\"\n"
+ " top: \"pool1\"\n"
+ " name: \"pool1\"\n"
+ " type: \"Pooling\"\n"
+ " pooling_param {\n"
+ " kernel_size: 2\n"
+ " stride: 2\n"
+ " pool: MAX\n"
+ " }\n"
+ "}\n"
+ "layer {\n"
+ " bottom: \"data\"\n"
+ " top: \"pool2\"\n"
+ " name: \"pool2\"\n"
+ " type: \"Pooling\"\n"
+ " pooling_param {\n"
+ " kernel_size: 2\n"
+ " stride: 2\n"
+ " pool: MAX\n"
+ " }\n"
+ "}\n"
+ "layer {\n"
+ " bottom: \"pool1\"\n"
+ " bottom: \"pool2\"\n"
+ " top: \"concat\"\n"
+ " name: \"concat\"\n"
+ " type: \"Concat\"\n"
+ "}\n";
+ SetupSingleInputSingleOutput("data", "concat");
+ }
+};
+
+BOOST_FIXTURE_TEST_CASE(ParseConcat, ConcatFixture)
+{
+ RunTest<4>(
+ {
+ 0, 1, 0, 0,
+ 0, 0, 0, 0,
+ 0, 0, 1, 0,
+ 1, 0, 1, 1
+ },
+ {
+ 1, 0,
+ 1, 1,
+
+ 1, 0,
+ 1, 1
+ });
+}
+
+BOOST_AUTO_TEST_SUITE_END()