From 452274c86245082ce20563ede12b92af81dba38a Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Thu, 23 Sep 2021 16:12:19 +0100 Subject: IVGCVSW-6459 Add support of scalar and flexible output datatypes to ONNX parser Signed-off-by: Narumol Prangnawarat Change-Id: Id1e933f6ae55ddc1a57c80c9f6a5757ccb61f018 --- src/armnnOnnxParser/test/Gather.cpp | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'src/armnnOnnxParser/test/Gather.cpp') diff --git a/src/armnnOnnxParser/test/Gather.cpp b/src/armnnOnnxParser/test/Gather.cpp index 1d214419c4..8fd9021ebc 100644 --- a/src/armnnOnnxParser/test/Gather.cpp +++ b/src/armnnOnnxParser/test/Gather.cpp @@ -85,6 +85,14 @@ struct GatherMainFixture : public armnnUtils::ParserPrototxtFixture({{"input", { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f }}}, + {{"output", { 1.0f }}}); +} + TEST_CASE_FIXTURE(Gather1dFixture, "Gather1dTest") { - RunTest<1, float>({{"input", {1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f }}}, - {{"output", {1.0f, 3.0f, 2.0f, 6.0f}}}); + RunTest<1, float>({{"input", { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f }}}, + {{"output", { 1.0f, 3.0f, 2.0f, 6.0f }}}); } TEST_CASE_FIXTURE(Gather2dFixture, "Gather2dTest") { - RunTest<2, float>({{"input", {1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f }}}, - {{"output", {3.0f, 4.0f, 7.0f, 8.0f, 9.0f, 10.0f }}}); + RunTest<2, float>({{"input", { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f }}}, + {{"output", { 3.0f, 4.0f, 7.0f, 8.0f, 9.0f, 10.0f }}}); } TEST_CASE_FIXTURE(Gather3dMultiIndicesFixture, "Gather3dMultiIndicesTest") -- cgit v1.2.1