From 287051663030ccd945accdcd90905fb48bf30948 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 21 Mar 2018 20:10:53 +0000 Subject: COMPMID-1007: Add initial validate support to backend Change-Id: I55eae35f35a3c7891e8d535907c861f022e43bea Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/125470 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice --- src/graph2/GraphManager.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/graph2/GraphManager.cpp') 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!"); -- cgit v1.2.1