aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ICounterDirectory.hpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2020-02-25 12:44:44 +0000
committerSadik Armagan <sadik.armagan@arm.com>2020-02-28 16:01:46 +0000
commit4c998993bda1475595be5505690ff4e08dc2389e (patch)
tree643dc71e82c8affd842481d4aa389db7de2c5c42 /src/profiling/ICounterDirectory.hpp
parent3b3c381963a1bfe12e083928a3abb5a9852b199b (diff)
downloadarmnn-4c998993bda1475595be5505690ff4e08dc2389e.tar.gz
IVGCVSW-4454 Remove the CounterSet and Device fields from Category
Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I721f59cd1f6d068e02dabd62c42871a43be9d934
Diffstat (limited to 'src/profiling/ICounterDirectory.hpp')
-rw-r--r--src/profiling/ICounterDirectory.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/profiling/ICounterDirectory.hpp b/src/profiling/ICounterDirectory.hpp
index 4f82b2e6e4..b19f7d306d 100644
--- a/src/profiling/ICounterDirectory.hpp
+++ b/src/profiling/ICounterDirectory.hpp
@@ -49,10 +49,8 @@ class Category final
{
public:
// Constructors
- Category(const std::string& name, uint16_t deviceUid, uint16_t counterSetUid)
+ Category(const std::string& name)
: m_Name(name)
- , m_DeviceUid(deviceUid)
- , m_CounterSetUid(counterSetUid)
{}
// Fields
@@ -60,8 +58,6 @@ public:
// Connections
std::vector<uint16_t> m_Counters; // The UIDs of the counters associated with this category
- uint16_t m_DeviceUid; // Optional, set to zero if the counter is not associated with a device
- uint16_t m_CounterSetUid; // Optional, set to zero if the counter is not associated with a counter set
};
class Device final