aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/test/GraphUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/test/GraphUtils.hpp')
-rw-r--r--src/armnn/test/GraphUtils.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/armnn/test/GraphUtils.hpp b/src/armnn/test/GraphUtils.hpp
new file mode 100644
index 0000000000..3ff7d2f67b
--- /dev/null
+++ b/src/armnn/test/GraphUtils.hpp
@@ -0,0 +1,24 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include "Graph.hpp"
+#include <string>
+
+namespace
+{
+
+bool GraphHasNamedLayer(const armnn::Graph& graph, const std::string& name)
+{
+ for (auto&& layer : graph)
+ {
+ if (layer->GetName() == name)
+ {
+ return true;
+ }
+ }
+ return false;
+}
+} \ No newline at end of file