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/include/Version.hpp | 29 +++++++++++++++++++++++++++++ delegate/include/armnn_delegate.hpp | 3 +++ 2 files changed, 32 insertions(+) create mode 100644 delegate/include/Version.hpp (limited to 'delegate/include') diff --git a/delegate/include/Version.hpp b/delegate/include/Version.hpp new file mode 100644 index 0000000000..f1ac1fe111 --- /dev/null +++ b/delegate/include/Version.hpp @@ -0,0 +1,29 @@ +// +// Copyright © 2021 Arm Ltd and Contributors. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#pragma once + +namespace armnnDelegate +{ + +/// Macro utils +#define STRINGIFY_VALUE(s) STRINGIFY_MACRO(s) +#define STRINGIFY_MACRO(s) #s + +// ArmNN Delegate version components +#define DELEGATE_MAJOR_VERSION 23 +#define DELEGATE_MINOR_VERSION 0 +#define DELEGATE_PATCH_VERSION 0 + +/// DELEGATE_VERSION: "X.Y.Z" +/// where: +/// X = Major version number +/// Y = Minor version number +/// Z = Patch version number +#define DELEGATE_VERSION STRINGIFY_VALUE(DELEGATE_MAJOR_VERSION) "." \ + STRINGIFY_VALUE(DELEGATE_MINOR_VERSION) "." \ + STRINGIFY_VALUE(DELEGATE_PATCH_VERSION) + +} //namespace armnnDelegate \ No newline at end of file diff --git a/delegate/include/armnn_delegate.hpp b/delegate/include/armnn_delegate.hpp index adf264aabb..b213211ae9 100644 --- a/delegate/include/armnn_delegate.hpp +++ b/delegate/include/armnn_delegate.hpp @@ -47,6 +47,9 @@ public: TfLiteDelegate* GetDelegate(); + /// Retrieve version in X.Y.Z form + static const std::string GetVersion(); + private: TfLiteDelegate m_Delegate = { reinterpret_cast(this), // .data_ -- cgit v1.2.1