From 6dd178f2395b34cfb360eabb0130c19ed258f5fa Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 2 Apr 2021 22:04:39 +0100 Subject: IVGCVSW-5720 Remove the Caffe Parser from ArmNN Signed-off-by: Nikhil Raj Change-Id: Ib00be204f549efa9aa5971ecf65c2dec4a10b10f --- src/armnnCaffeParser/test/TestDropout.cpp | 53 ------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/armnnCaffeParser/test/TestDropout.cpp (limited to 'src/armnnCaffeParser/test/TestDropout.cpp') diff --git a/src/armnnCaffeParser/test/TestDropout.cpp b/src/armnnCaffeParser/test/TestDropout.cpp deleted file mode 100644 index 503766248b..0000000000 --- a/src/armnnCaffeParser/test/TestDropout.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// -// Copyright © 2017 Arm Ltd. All rights reserved. -// SPDX-License-Identifier: MIT -// - -#include -#include "armnnCaffeParser/ICaffeParser.hpp" -#include "ParserPrototxtFixture.hpp" - -BOOST_AUTO_TEST_SUITE(CaffeParser) - -struct DropoutFixture : public armnnUtils::ParserPrototxtFixture -{ - DropoutFixture() - { - m_Prototext = "name: \"DropoutFixture\"\n" - "layer {\n" - " name: \"data\"\n" - " type: \"Input\"\n" - " top: \"data\"\n" - " input_param { shape: { dim: 1 dim: 1 dim: 2 dim: 2 } }\n" - "}\n" - "layer {\n" - " bottom: \"data\"\n" - " top: \"drop1\"\n" - " name: \"drop1\"\n" - " type: \"Dropout\"\n" - "}\n" - "layer {\n" - " bottom: \"drop1\"\n" - " bottom: \"drop1\"\n" - " top: \"add\"\n" - " name: \"add\"\n" - " type: \"Eltwise\"\n" - "}\n"; - SetupSingleInputSingleOutput("data", "add"); - } -}; - -BOOST_FIXTURE_TEST_CASE(ParseDropout, DropoutFixture) -{ - RunTest<4>( - { - 1, 2, - 3, 4, - }, - { - 2, 4, - 6, 8 - }); -} - -BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1