aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ProfilingConnectionFactory.hpp
blob: b3a16585480f622cc334f26766a6358b2b04da54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include "IProfilingConnectionFactory.hpp"

#include <Runtime.hpp>

#include <memory>

namespace armnn
{

namespace profiling
{

class ProfilingConnectionFactory final : public IProfilingConnectionFactory
{
public:
    ProfilingConnectionFactory()  = default;
    ~ProfilingConnectionFactory() = default;

    IProfilingConnectionPtr GetProfilingConnection(const ExternalProfilingOptions& options) const override;
};

}    // namespace profiling

}    // namespace armnn