aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ICounterValues.hpp
diff options
context:
space:
mode:
authorKeith Davis <keith.davis@arm.com>2019-12-02 15:12:19 +0000
committerKeith Davis <keith.davis@arm.com>2019-12-13 16:21:12 +0000
commite394bd99f1a55e099445823b7a951f0faa84d439 (patch)
treeced6e6d4a2932bda64c1f4c5e280b82d87b77929 /src/profiling/ICounterValues.hpp
parent60a20fb62c992c4c6369bb7f532957f3e151f3d8 (diff)
downloadarmnn-e394bd99f1a55e099445823b7a951f0faa84d439.tar.gz
IVGCVSW-4178 Add code to increment the 3 ArmNN counters
* Increment at Runtime.cpp | BackendRegistry.cpp | LoadedNetwork.cpp * Update unit tests * UID generation is now handled by backends Signed-off-by: Keith Davis <keith.davis@arm.com> Change-Id: Ifa53763409078c14839675206d8b260cdc36a8df
Diffstat (limited to 'src/profiling/ICounterValues.hpp')
-rw-r--r--src/profiling/ICounterValues.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/profiling/ICounterValues.hpp b/src/profiling/ICounterValues.hpp
index 18e34b6747..cef02668f6 100644
--- a/src/profiling/ICounterValues.hpp
+++ b/src/profiling/ICounterValues.hpp
@@ -32,7 +32,6 @@ public:
virtual uint32_t AddCounterValue(uint16_t counterUid, uint32_t value) = 0;
virtual uint32_t SubtractCounterValue(uint16_t counterUid, uint32_t value) = 0;
virtual uint32_t IncrementCounterValue(uint16_t counterUid) = 0;
- virtual uint32_t DecrementCounterValue(uint16_t counterUid) = 0;
};
class IReadWriteCounterValues : public IReadCounterValues, public IWriteCounterValues