From 9c85b41a9fcb3c64d7a686373e7dde75630ccd49 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Wed, 16 Mar 2022 00:27:43 +0000 Subject: IVGCVSW-6852 Break the remaining dependencies on Arm NN in the profiling code Change-Id: I18b8ca22896567904768170350ee5eb22edd4a22 Signed-off-by: Jim Flynn --- include/armnn/profiling/ArmNNProfiling.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/armnn') diff --git a/include/armnn/profiling/ArmNNProfiling.hpp b/include/armnn/profiling/ArmNNProfiling.hpp index 39d4a6bfcc..72fefe1cab 100644 --- a/include/armnn/profiling/ArmNNProfiling.hpp +++ b/include/armnn/profiling/ArmNNProfiling.hpp @@ -5,6 +5,8 @@ #pragma once +#include + namespace arm { @@ -17,6 +19,12 @@ static const uint16_t REGISTERED_BACKENDS = 2; static const uint16_t UNREGISTERED_BACKENDS = 3; static const uint16_t INFERENCES_RUN = 4; static const uint16_t MAX_ARMNN_COUNTER = INFERENCES_RUN; + +// Static holding Arm NN's software descriptions +static std::string ARMNN_SOFTWARE_INFO("ArmNN"); +static std::string ARMNN_HARDWARE_VERSION; +static std::string ARMNN_SOFTWARE_VERSION = "Armnn " + std::to_string(ARMNN_MAJOR_VERSION) + "." + + std::to_string(ARMNN_MINOR_VERSION); } // namespace pipe } // namespace arm -- cgit v1.2.1