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

#pragma once

namespace armnn
{

namespace profiling
{
class IPeriodicCounterCapture
{
public:
    virtual void Start() = 0;
    virtual ~IPeriodicCounterCapture() {};
};

} // namespace profiling
} // namespace armnn