aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfParser/test/Shape.cpp
diff options
context:
space:
mode:
authortelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
committertelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
commitc577f2c6a3b4ddb6ba87a882723c53a248afbeba (patch)
treebd7d4c148df27f8be6649d313efb24f536b7cf34 /src/armnnTfParser/test/Shape.cpp
parent4c7098bfeab1ffe1cdc77f6c15548d3e73274746 (diff)
downloadarmnn-c577f2c6a3b4ddb6ba87a882723c53a248afbeba.tar.gz
Release 18.08
Diffstat (limited to 'src/armnnTfParser/test/Shape.cpp')
-rw-r--r--src/armnnTfParser/test/Shape.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/armnnTfParser/test/Shape.cpp b/src/armnnTfParser/test/Shape.cpp
index 7b414ecfac..959d69bb73 100644
--- a/src/armnnTfParser/test/Shape.cpp
+++ b/src/armnnTfParser/test/Shape.cpp
@@ -9,7 +9,7 @@
BOOST_AUTO_TEST_SUITE(TensorflowParser)
-struct ShapeFixture : public ParserPrototxtFixture<armnnTfParser::ITfParser>
+struct ShapeFixture : public armnnUtils::ParserPrototxtFixture<armnnTfParser::ITfParser>
{
ShapeFixture()
{
@@ -85,9 +85,8 @@ struct ShapeFixture : public ParserPrototxtFixture<armnnTfParser::ITfParser>
BOOST_FIXTURE_TEST_CASE(ParseShape, ShapeFixture)
{
- // Note: the test's output cannot be an int32 const layer, because that cannot exist in the
- // as ARMNN only supports u8 and float layers. For that reason I added a reshape layer
- // which reshapes the input to its original dimensions, which is not changing it.
+ // Note: the test's output cannot be an int32 const layer, because ARMNN only supports u8 and float layers.
+ // For that reason I added a reshape layer which reshapes the input to its original dimensions.
RunTest<2>({ 0.0f, 1.0f, 2.0f, 3.0f }, { 0.0f, 1.0f, 2.0f, 3.0f });
}