blob: 3a8236a0f4baf533328d72825db8016b7e338a58 [file] [log] [blame]
Francis Murtaghfcb8ef62019-09-20 15:40:09 +01001//
2// Copyright © 2019 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace armnn
9{
10
11namespace profiling
12{
13
14class IReadCounterValue
15{
16public:
17 virtual void GetCounterValue(uint16_t index, uint32_t &value) const = 0;
18 virtual ~IReadCounterValue() {}
19};
20
21} // namespace profiling
22
23} // namespace armnn