aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IPeriodicCounterCapture.hpp
blob: bec41dce11440ea5c416647fb9a886f53a8ad239 (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 IPeriodicCounterCapture
{
public:
    virtual ~IPeriodicCounterCapture() {}

    virtual void Start() = 0;
    virtual void Stop() = 0;
};

} // namespace profiling
} // namespace armnn