aboutsummaryrefslogtreecommitdiff
path: root/src/armnnCaffeParser/test/TestMul.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnCaffeParser/test/TestMul.cpp')
-rw-r--r--src/armnnCaffeParser/test/TestMul.cpp73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/armnnCaffeParser/test/TestMul.cpp b/src/armnnCaffeParser/test/TestMul.cpp
deleted file mode 100644
index 3b49015bce..0000000000
--- a/src/armnnCaffeParser/test/TestMul.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-#include <boost/test/unit_test.hpp>
-#include "armnnCaffeParser/ICaffeParser.hpp"
-#include "ParserPrototxtFixture.hpp"
-
-BOOST_AUTO_TEST_SUITE(CaffeParser)
-
-struct MulFixture : public armnnUtils::ParserPrototxtFixture<armnnCaffeParser::ICaffeParser>
-{
- MulFixture()
- {
- m_Prototext = "name: \"MinimalMul\"\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: \"mul\"\n"
- " name: \"mul\"\n"
- " type: \"Eltwise\"\n"
- " eltwise_param {\n"
- " operation: 0\n"
- " }\n"
- "}\n";
- SetupSingleInputSingleOutput("data", "mul");
- }
-};
-
-BOOST_FIXTURE_TEST_CASE(ParseMul, MulFixture)
-{
- RunTest<4>(
- {
- 0, 1, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 1, 0,
- 1, 0, 1, 1
- },
- {
- 1, 0,
- 1, 1
- });
-}
-
-BOOST_AUTO_TEST_SUITE_END()