COMPMID-798 Add instrumentation to NEON kernels

Change-Id: I9dbb090cac731d68bd98a7d1c8ab0e1cb0a5c911
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/116746
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Tested-by: Anthony Barbier <anthony.barbier@arm.com>
diff --git a/arm_compute/core/NEON/kernels/NEHOGDescriptorKernel.h b/arm_compute/core/NEON/kernels/NEHOGDescriptorKernel.h
index 0eae9eb..37d0419 100644
--- a/arm_compute/core/NEON/kernels/NEHOGDescriptorKernel.h
+++ b/arm_compute/core/NEON/kernels/NEHOGDescriptorKernel.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2017 ARM Limited.
+ * Copyright (c) 2016-2018 ARM Limited.
  *
  * SPDX-License-Identifier: MIT
  *
@@ -36,6 +36,10 @@
 class NEHOGOrientationBinningKernel : public INEKernel
 {
 public:
+    const char *name() const override
+    {
+        return "NEHOGOrientationBinningKernel";
+    }
     /** Default constructor */
     NEHOGOrientationBinningKernel();
     /** Prevent instances of this class from being copied (As this class contains pointers) */
@@ -91,6 +95,10 @@
 class NEHOGBlockNormalizationKernel : public INEKernel
 {
 public:
+    const char *name() const override
+    {
+        return "NEHOGBlockNormalizationKernel";
+    }
     /** Default constructor */
     NEHOGBlockNormalizationKernel();
     /** Prevent instances of this class from being copied (As this class contains pointers) */