blob: faecea7526f5be115fc3725c75803abd5748ac9c [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#include "ProfilingConnectionFactory.hpp"
Sadik Armaganbd9e2c52019-09-26 23:13:31 +01007#include "SocketProfilingConnection.hpp"
Aron Virginas-Tar1a0f6912019-08-23 15:18:44 +01008
9namespace armnn
10{
11
12namespace profiling
13{
14
15std::unique_ptr<IProfilingConnection> ProfilingConnectionFactory::GetProfilingConnection(
16 const Runtime::CreationOptions::ExternalProfilingOptions& options) const
17{
Sadik Armaganbd9e2c52019-09-26 23:13:31 +010018 return std::make_unique<SocketProfilingConnection>();
Aron Virginas-Tar1a0f6912019-08-23 15:18:44 +010019}
20
21} // namespace profiling
22
23} // namespace armnn