blob: 1b4924df72ab51cb7b235aed11489d459107ebbb [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"
7
8namespace armnn
9{
10
11namespace profiling
12{
13
14std::unique_ptr<IProfilingConnection> ProfilingConnectionFactory::GetProfilingConnection(
15 const Runtime::CreationOptions::ExternalProfilingOptions& options) const
16{
17 return nullptr;
18}
19
20} // namespace profiling
21
22} // namespace armnn