blob: 102c82070ebbbbf37aab01dd79b0ef7e07e346c6 [file] [log] [blame]
Aron Virginas-Tar1a0f6912019-08-23 15:18:44 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "IProfilingConnection.hpp"
9
10#include <Runtime.hpp>
11
12#include <memory>
13
14namespace armnn
15{
16
17namespace profiling
18{
19
20class ProfilingConnectionFactory final
21{
22public:
23 ProfilingConnectionFactory() = default;
24 ~ProfilingConnectionFactory() = default;
25
26 std::unique_ptr<IProfilingConnection> GetProfilingConnection(
27 const Runtime::CreationOptions::ExternalProfilingOptions& options) const;
28};
29
30} // namespace profiling
31
32} // namespace armnn