2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // See LICENSE file in the project root for full license information.
5 #include <boost/test/unit_test.hpp>
6 #include "armnnCaffeParser/ICaffeParser.hpp"
7 #include "ParserPrototxtFixture.hpp"
9 BOOST_AUTO_TEST_SUITE(CaffeParser)
11 struct MulFixture : public armnnUtils::ParserPrototxtFixture<armnnCaffeParser::ICaffeParser>
15 m_Prototext = "name: \"MinimalMul\"\n"
20 " input_param { shape: { dim: 1 dim: 1 dim: 4 dim: 4 } }\n"
26 " type: \"Pooling\"\n"
37 " type: \"Pooling\"\n"
45 " bottom: \"pool1\"\n"
46 " bottom: \"pool2\"\n"
49 " type: \"Eltwise\"\n"
54 SetupSingleInputSingleOutput("data", "mul");
58 BOOST_FIXTURE_TEST_CASE(ParseMul, MulFixture)
73 BOOST_AUTO_TEST_SUITE_END()