aboutsummaryrefslogtreecommitdiff
path: root/src/armnn
diff options
context:
space:
mode:
authorMatthew Bentham <Matthew.Bentham@arm.com>2020-01-20 10:09:09 +0000
committerMatthew Bentham <matthew.bentham@arm.com>2020-01-20 16:36:24 +0000
commit39ef3e595b8e0158875c0346855af5af679d78ad (patch)
tree392ac030c697b0e71b608a51e901e76e6bafcc99 /src/armnn
parentff130e2891b6691fdd2428c9b8c7f8b09120d39e (diff)
downloadarmnn-39ef3e595b8e0158875c0346855af5af679d78ad.tar.gz
Remove use of ArmNN.hpp where it is unnecessary.
Signed-off-by: Matthew Bentham <Matthew.Bentham@arm.com> Change-Id: I6c90eab1c6bad76d5c7b3bf094998fa4b454bcd1
Diffstat (limited to 'src/armnn')
-rw-r--r--src/armnn/LayerSupport.cpp1
-rw-r--r--src/armnn/Profiling.hpp1
-rw-r--r--src/armnn/layers/LstmLayer.cpp1
-rw-r--r--src/armnn/layers/QuantizedLstmLayer.cpp1
-rw-r--r--src/armnn/test/ProfilerTests.cpp4
5 files changed, 5 insertions, 3 deletions
diff --git a/src/armnn/LayerSupport.cpp b/src/armnn/LayerSupport.cpp
index 2749d7bd7a..dac88385b1 100644
--- a/src/armnn/LayerSupport.cpp
+++ b/src/armnn/LayerSupport.cpp
@@ -15,7 +15,6 @@
#include <cstring>
#include <algorithm>
#include <unordered_map>
-#include <armnn/ArmNN.hpp>
namespace
{
diff --git a/src/armnn/Profiling.hpp b/src/armnn/Profiling.hpp
index d52bbb0aec..4afd6911c2 100644
--- a/src/armnn/Profiling.hpp
+++ b/src/armnn/Profiling.hpp
@@ -6,7 +6,6 @@
#include "ProfilingEvent.hpp"
-#include "armnn/ArmNN.hpp"
#include "armnn/IProfiler.hpp"
#include "WallClockTimer.hpp"
diff --git a/src/armnn/layers/LstmLayer.cpp b/src/armnn/layers/LstmLayer.cpp
index 1aa10ea030..581ba45c5f 100644
--- a/src/armnn/layers/LstmLayer.cpp
+++ b/src/armnn/layers/LstmLayer.cpp
@@ -6,6 +6,7 @@
#include "LayerCloneBase.hpp"
+#include <armnn/LstmParams.hpp>
#include <armnn/TypesUtils.hpp>
#include <backendsCommon/CpuTensorHandle.hpp>
#include <backendsCommon/WorkloadFactory.hpp>
diff --git a/src/armnn/layers/QuantizedLstmLayer.cpp b/src/armnn/layers/QuantizedLstmLayer.cpp
index 1c22ab4c92..8717041a53 100644
--- a/src/armnn/layers/QuantizedLstmLayer.cpp
+++ b/src/armnn/layers/QuantizedLstmLayer.cpp
@@ -6,6 +6,7 @@
#include "LayerCloneBase.hpp"
+#include <armnn/QuantizedLstmParams.hpp>
#include <armnn/TypesUtils.hpp>
#include <backendsCommon/CpuTensorHandle.hpp>
#include <backendsCommon/WorkloadFactory.hpp>
diff --git a/src/armnn/test/ProfilerTests.cpp b/src/armnn/test/ProfilerTests.cpp
index b4720f2902..a052862bdd 100644
--- a/src/armnn/test/ProfilerTests.cpp
+++ b/src/armnn/test/ProfilerTests.cpp
@@ -3,6 +3,9 @@
// SPDX-License-Identifier: MIT
//
+#include <armnn/IRuntime.hpp>
+#include <armnn/TypesUtils.hpp>
+
#include <boost/test/unit_test.hpp>
#include <boost/test/tools/output_test_stream.hpp>
#include <boost/algorithm/string.hpp>
@@ -11,7 +14,6 @@
#include <thread>
#include <ostream>
-#include <armnn/TypesUtils.hpp>
#include <Profiling.hpp>
namespace armnn