blob: 1ee593739ec6bf386d5548591d292de77393ecaa [file] [log] [blame]
//
// 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 AddFixture : public armnnUtils::ParserPrototxtFixture<armnnCaffeParser::ICaffeParser>
{
AddFixture()
{
m_Prototext = "name: \"MinimalAdd\"\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: \"add\"\n"
" name: \"add\"\n"
" type: \"Eltwise\"\n"
"}\n";
SetupSingleInputSingleOutput("data", "add");
}
};
BOOST_FIXTURE_TEST_CASE(ParseAdd, AddFixture)
{
RunTest<4>(
{
0, 1, 0, 0,
0, 0, 0, 0,
0, 0, 1, 0,
1, 0, 1, 1
},
{
2, 0,
2, 2
});
}
BOOST_AUTO_TEST_SUITE_END()