aboutsummaryrefslogtreecommitdiff
path: root/tests/ExecuteNetwork/IExecutor.hpp
diff options
context:
space:
mode:
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(){};
-};