aboutsummaryrefslogtreecommitdiff
path: root/shim
diff options
context:
space:
mode:
authorKevin May <kevin.may@arm.com>2022-09-16 10:33:29 +0100
committerKevin May <kevin.may@arm.com>2022-09-16 10:33:29 +0100
commit80a9d88d6ea1788a627fab9c51c9c1968b8c8038 (patch)
treeb45cde929b8f8e4b1cf3ca8a1a7977c11624adbb /shim
parent1b56b46fee47a44e0fd019e0a10e93612f1dba36 (diff)
downloadarmnn-80a9d88d6ea1788a627fab9c51c9c1968b8c8038.tar.gz
Use ARMNN_VERSION for Support Library versionString
Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: I6f2b52f7277215c97be3d53969a9eaef137e3636
Diffstat (limited to 'shim')
-rw-r--r--shim/sl/canonical/ArmnnDriver.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/shim/sl/canonical/ArmnnDriver.hpp b/shim/sl/canonical/ArmnnDriver.hpp
index c33c61a65b..484a5318f7 100644
--- a/shim/sl/canonical/ArmnnDriver.hpp
+++ b/shim/sl/canonical/ArmnnDriver.hpp
@@ -21,6 +21,7 @@
#include "ArmnnDriverImpl.hpp"
#include "ModelToINetworkTransformer.hpp"
+#include <armnn/Version.hpp>
#include <log/log.h>
namespace armnn_driver
{
@@ -53,7 +54,7 @@ public:
const std::string& getVersionString() const override
{
VLOG(DRIVER) << "ArmnnDriver::getVersionString()";
- static const std::string versionString = "ArmNN";
+ static const std::string versionString = ARMNN_VERSION;
return versionString;
}