From f658554c25d91d530226b8f5e5c5fc02b3275ef0 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Mon, 8 May 2023 13:14:32 +0100 Subject: IVGCVSW-5846 Remove TODO statements from Armnn Code * Removed all instances of TODO statements from comments * Removed statements are noted as part of IVGCVSW-5846 * Removed ProtoxtFixture.cpp from the Onnx Parser tests as it's not used Signed-off-by: David Monahan Change-Id: Ia0a15f8a0d4123c8831638634eaa0d1018c40e2c --- src/armnnOnnxParser/test/ProtoxtFixture.cpp | 80 ----------------------------- 1 file changed, 80 deletions(-) delete mode 100644 src/armnnOnnxParser/test/ProtoxtFixture.cpp (limited to 'src/armnnOnnxParser/test') diff --git a/src/armnnOnnxParser/test/ProtoxtFixture.cpp b/src/armnnOnnxParser/test/ProtoxtFixture.cpp deleted file mode 100644 index 067b440990..0000000000 --- a/src/armnnOnnxParser/test/ProtoxtFixture.cpp +++ /dev/null @@ -1,80 +0,0 @@ -// -// Copyright © 2017 Arm Ltd. All rights reserved. -// SPDX-License-Identifier: MIT -// - -#include "armnnOnnxParser/IOnnxParser.hpp" -#include "ParserPrototxtFixture.hpp" - -TEST_SUITE("OnnxParser_PrototxtFixture") -{ -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: 1 - shape { - dim { - dim_value: 2 - } - } - } - } - } - output { - name: "Output" - type { - tensor_type { - elem_type: 1 - shape { - dim { - dim_value: 1 - } - dim { - dim_value: 10 - } - } - } - } - } - } - opset_import { - version: 7 - })"; - // Setup(); - } -}; - - -TEST_CASE_FIXTURE(ProtoxtTestFixture, "ProtoxtTest") -{ - //TODO : add a test to check if the inputs and outputs are correctly inferred. -} - -TEST_CASE_FIXTURE(ProtoxtTestFixture, "ProtoxtTestWithBadInputs") -{ - - // CHECK_THROWS_AS(RunTest<4>({{ "InexistantInput" , {0.0, 1.0, 2.0, 3.0}}}, - // {{ "InexistantOutput" , {0.0, 1.0, 2.0, 3.0}}}), - // armnn::InvalidArgumentException ); -} - -} -- cgit v1.2.1