From ac001eebca101f2df4973d2f1d8cfca026e07419 Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Wed, 3 Feb 2021 10:43:04 +0000 Subject: IVGCVSW-4901 Add semantic versioning to Parsers and TfLite Delegate * Added Version.hpp to all Parsers * Added Version.hpp to TfLite Delegate * Updated CMakeLists to use new versions * Added GetVersion method to parsers and TfLite Delegate Signed-off-by: Matthew Sloyan Change-Id: If29e1e6d9e615f9095ec1c01ad47acfff40b1dd5 --- delegate/src/armnn_delegate.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'delegate/src/armnn_delegate.cpp') 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 +#include "Version.hpp" + #include "Activation.hpp" #include "ArgMinMax.hpp" #include "BatchSpace.hpp" @@ -35,6 +37,7 @@ #include #include +#include #include 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, -- cgit v1.2.1