blob: edc034d20ee0a12c25566aa86c807c915eee7481 [file] [log] [blame]
Jim Flynnb0b802f2019-09-11 18:08:32 +01001//
2// Copyright © 2019 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace armnn
9{
Jim Flynnb0b802f2019-09-11 18:08:32 +010010namespace profiling
11{
Matteo Martincigh24e8f922019-09-19 11:57:46 +010012
Jim Flynnb0b802f2019-09-11 18:08:32 +010013class IPeriodicCounterCapture
14{
15public:
16 virtual void Start() = 0;
Matteo Martincigh24e8f922019-09-19 11:57:46 +010017 virtual ~IPeriodicCounterCapture() {}
Jim Flynnb0b802f2019-09-11 18:08:32 +010018};
19
20} // namespace profiling
Matteo Martincigh24e8f922019-09-19 11:57:46 +010021} // namespace armnn