aboutsummaryrefslogtreecommitdiff
path: root/tests/ExecuteNetwork/IExecutor.hpp
diff options
context:
space:
mode:
authorNikhil Raj Arm <nikhil.raj@arm.com>2022-07-05 09:29:18 +0000
committerNikhil Raj <nikhil.raj@arm.com>2022-07-08 15:21:03 +0100
commitf4ccb1f6339a1e9ed573f188e7f14353167b5749 (patch)
treebb53a449cd42ed919022bd52b9e369a28d5a14d4 /tests/ExecuteNetwork/IExecutor.hpp
parentfd33a698ee3c588aa4064b70b7781ab25ff76f66 (diff)
downloadarmnn-f4ccb1f6339a1e9ed573f188e7f14353167b5749.tar.gz
Revert "IVGCVSW-6650 Refactor ExecuteNetwork"
This reverts commit 615e06f54a4c4139e81e289991ba4084aa2f69d3. Reason for revert: <Breaking nightlies and tests> Change-Id: I06a4a0119463188a653bb749033f78514645bd0c
Diffstat (limited to 'tests/ExecuteNetwork/IExecutor.hpp')
-rw-r--r--tests/ExecuteNetwork/IExecutor.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/ExecuteNetwork/IExecutor.hpp b/tests/ExecuteNetwork/IExecutor.hpp
deleted file mode 100644
index 4ed6cbde84..0000000000
--- a/tests/ExecuteNetwork/IExecutor.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-#include <vector>
-
-/// IExecutor executes a network
-class IExecutor
-{
-public:
- /// Execute the given network
- /// @return std::vector<const void*> A type erased vector of the outputs,
- /// that can be compared with the output of another IExecutor
- virtual std::vector<const void*> Execute() = 0;
- /// Print available information about the network
- virtual void PrintNetworkInfo() = 0;
- /// Compare the output with the result of another IExecutor
- virtual void CompareAndPrintResult(std::vector<const void*> otherOutput) = 0;
- virtual ~IExecutor(){};
-};