aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/armnn_delegate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/src/armnn_delegate.cpp')
-rw-r--r--delegate/src/armnn_delegate.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/delegate/src/armnn_delegate.cpp b/delegate/src/armnn_delegate.cpp
index 639e514a78..3ebc0cc6b5 100644
--- a/delegate/src/armnn_delegate.cpp
+++ b/delegate/src/armnn_delegate.cpp
@@ -5,6 +5,8 @@
#include <armnn_delegate.hpp>
+#include "Version.hpp"
+
#include "Activation.hpp"
#include "ArgMinMax.hpp"
#include "BatchSpace.hpp"
@@ -35,6 +37,7 @@
#include <tensorflow/lite/context_util.h>
#include <algorithm>
+#include <iostream>
#include <sstream>
namespace armnnDelegate
@@ -217,6 +220,11 @@ TfLiteDelegate* Delegate::GetDelegate()
return &m_Delegate;
}
+const std::string Delegate::GetVersion()
+{
+ return DELEGATE_VERSION;
+}
+
TfLiteStatus ArmnnSubgraph::AddInputLayer(DelegateData& delegateData,
TfLiteContext* tfLiteContext,
const TfLiteIntArray* inputs,