aboutsummaryrefslogtreecommitdiff
path: root/tests/ExecuteNetwork/ExecuteNetworkParams.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ExecuteNetwork/ExecuteNetworkParams.hpp')
-rw-r--r--tests/ExecuteNetwork/ExecuteNetworkParams.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ExecuteNetwork/ExecuteNetworkParams.hpp b/tests/ExecuteNetwork/ExecuteNetworkParams.hpp
index a30ce57147..a19eaa9346 100644
--- a/tests/ExecuteNetwork/ExecuteNetworkParams.hpp
+++ b/tests/ExecuteNetwork/ExecuteNetworkParams.hpp
@@ -14,6 +14,13 @@ struct ExecuteNetworkParams
{
using TensorShapePtr = std::unique_ptr<armnn::TensorShape>;
+ enum class TfLiteExecutor
+ {
+ ArmNNTfLiteParser,
+ ArmNNTfLiteDelegate,
+ TfliteInterpreter
+ };
+
std::string m_CachedNetworkFilePath;
std::vector<armnn::BackendId> m_ComputeDevices;
bool m_DequantizeOutput;
@@ -47,6 +54,7 @@ struct ExecuteNetworkParams
int m_TuningLevel;
std::string m_TuningPath;
std::string m_MLGOTuningFilePath;
+ TfLiteExecutor m_TfLiteExecutor;
// Ensures that the parameters for ExecuteNetwork fit together
void ValidateParams();