aboutsummaryrefslogtreecommitdiff
path: root/src/graph2/GraphManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph2/GraphManager.cpp')
-rw-r--r--src/graph2/GraphManager.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/graph2/GraphManager.cpp b/src/graph2/GraphManager.cpp
index edbe2cc381..e708dc6a61 100644
--- a/src/graph2/GraphManager.cpp
+++ b/src/graph2/GraphManager.cpp
@@ -64,6 +64,9 @@ void GraphManager::finalize_graph(Graph &graph, GraphContext &ctx, PassManager &
// Perform topological sort
// FIXME : Sort nodes and pass sorted indices in configure all nodes
+ // Validate all nodes
+ detail::validate_all_nodes(graph);
+
// Configure all nodes
auto workload = detail::configure_all_nodes(graph, ctx);
ARM_COMPUTE_ERROR_ON_MSG(workload.tasks.empty(), "Could not configure all nodes!");