aboutsummaryrefslogtreecommitdiff
path: root/src/armnnOnnxParser/test
diff options
context:
space:
mode:
authorDavid Monahan <david.monahan@arm.com>2023-05-08 13:14:32 +0100
committerFrancis Murtagh <francis.murtagh@arm.com>2023-05-09 10:00:09 +0000
commitf658554c25d91d530226b8f5e5c5fc02b3275ef0 (patch)
tree4a1d85514529bcd9197d069fcbea412972335628 /src/armnnOnnxParser/test
parente69cbfe4cff97353baaa2be11ffaf5a639415d40 (diff)
downloadarmnn-f658554c25d91d530226b8f5e5c5fc02b3275ef0.tar.gz
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 <david.monahan@arm.com> Change-Id: Ia0a15f8a0d4123c8831638634eaa0d1018c40e2c
Diffstat (limited to 'src/armnnOnnxParser/test')
-rw-r--r--src/armnnOnnxParser/test/ProtoxtFixture.cpp80
1 files changed, 0 insertions, 80 deletions
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<armnnOnnxParser::IOnnxParser>
-{
- 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 );
-}
-
-}