From c577f2c6a3b4ddb6ba87a882723c53a248afbeba Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 31 Aug 2018 09:22:23 +0100 Subject: Release 18.08 --- src/armnnOnnxParser/test/ProtoxtFixture.cpp | 81 +++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/armnnOnnxParser/test/ProtoxtFixture.cpp (limited to 'src/armnnOnnxParser/test/ProtoxtFixture.cpp') diff --git a/src/armnnOnnxParser/test/ProtoxtFixture.cpp b/src/armnnOnnxParser/test/ProtoxtFixture.cpp new file mode 100644 index 0000000000..2bfeadf2e3 --- /dev/null +++ b/src/armnnOnnxParser/test/ProtoxtFixture.cpp @@ -0,0 +1,81 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// + +#include +#include "armnnOnnxParser/IOnnxParser.hpp" +#include "ParserPrototxtFixture.hpp" + +BOOST_AUTO_TEST_SUITE(OnnxParser) + +struct ProtoxtTestFixture : public armnnUtils::ParserPrototxtFixture +{ + ProtoxtTestFixture() + { + m_Prototext = R"( + ir_version: 3 + producer_name: "CNTK " + producer_version: "2.5.1 " + domain: "ai.cntk " + model_version: 1 + graph { + name: "CNTKGraph " + node { + input: "Input" + output: "Output" + name: "Plus112" + op_type: "Add " + } + input { + name: "Input" + type { + tensor_type { + elem_type: FLOAT + shape { + dim { + dim_value: 2 + } + } + } + } + } + output { + name: "Output" + type { + tensor_type { + elem_type: FLOAT + shape { + dim { + dim_value: 1 + } + dim { + dim_value: 10 + } + } + } + } + } + } + opset_import { + version: 7 + })"; + // Setup(); + } +}; + + +BOOST_FIXTURE_TEST_CASE(ProtoxtTest, ProtoxtTestFixture) +{ + //TODO : add a test to check if the inputs and outputs are correctly inferred. +} + +BOOST_FIXTURE_TEST_CASE(ProtoxtTestWithBadInputs, ProtoxtTestFixture) +{ + + // BOOST_CHECK_THROW(RunTest<4>({{ "InexistantInput" , {0.0, 1.0, 2.0, 3.0}}}, + // {{ "InexistantOutput" , {0.0, 1.0, 2.0, 3.0}}}), + // armnn::InvalidArgumentException ); +} + +BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1