• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2022 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <client/include/IInitialiseProfilingService.hpp>
9 #include <client/include/IProfilingService.hpp>
10 
11 namespace armnn
12 {
13 
14 class ArmNNProfilingServiceInitialiser : public arm::pipe::IInitialiseProfilingService
15 {
16 public:
17     void InitialiseProfilingService(arm::pipe::IProfilingService& profilingService) override;
18 };
19 
20 } // namespace armnn
21