aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ProfilingConnectionFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/ProfilingConnectionFactory.cpp')
-rw-r--r--src/profiling/ProfilingConnectionFactory.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/profiling/ProfilingConnectionFactory.cpp b/src/profiling/ProfilingConnectionFactory.cpp
index 1b4924df72..faecea7526 100644
--- a/src/profiling/ProfilingConnectionFactory.cpp
+++ b/src/profiling/ProfilingConnectionFactory.cpp
@@ -4,6 +4,7 @@
//
#include "ProfilingConnectionFactory.hpp"
+#include "SocketProfilingConnection.hpp"
namespace armnn
{
@@ -14,7 +15,7 @@ namespace profiling
std::unique_ptr<IProfilingConnection> ProfilingConnectionFactory::GetProfilingConnection(
const Runtime::CreationOptions::ExternalProfilingOptions& options) const
{
- return nullptr;
+ return std::make_unique<SocketProfilingConnection>();
}
} // namespace profiling