aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IReadCounterValue.hpp
blob: 3a8236a0f4baf533328d72825db8016b7e338a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

namespace armnn
{

namespace profiling
{

class IReadCounterValue
{
public:
    virtual void GetCounterValue(uint16_t index, uint32_t &value) const = 0;
    virtual ~IReadCounterValue() {}
};

} // namespace profiling

} // namespace armnn