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

#pragma once

#include <client/include/IInitialiseProfilingService.hpp>
#include <client/include/IProfilingService.hpp>

namespace armnn
{

class ArmNNProfilingServiceInitialiser : public arm::pipe::IInitialiseProfilingService
{
public:
    void InitialiseProfilingService(arm::pipe::IProfilingService& profilingService) override;
};

} // namespace armnn