From 12be7ab4876f77fecfab903df70791623219b3da Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 3 Jul 2018 12:06:23 +0100 Subject: COMPMID-1310: Create graph validation executables. Change-Id: I9e0b57b1b83fe5a95777cdaeddba6ecef650bafc Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138697 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- arm_compute/graph/detail/ExecutionHelpers.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'arm_compute/graph/detail/ExecutionHelpers.h') diff --git a/arm_compute/graph/detail/ExecutionHelpers.h b/arm_compute/graph/detail/ExecutionHelpers.h index 23dd207695..3a357776e4 100644 --- a/arm_compute/graph/detail/ExecutionHelpers.h +++ b/arm_compute/graph/detail/ExecutionHelpers.h @@ -95,13 +95,17 @@ void call_all_const_node_accessors(Graph &g); /** Call all input node accessors * * @param[in] workload Workload to execute + * + * @return True if all the accesses were valid */ -void call_all_input_node_accessors(ExecutionWorkload &workload); +bool call_all_input_node_accessors(ExecutionWorkload &workload); /** Call all output node accessors * * @param[in] workload Workload to execute + * + * @return True if all the accessors expect more data */ -void call_all_output_node_accessors(ExecutionWorkload &workload); +bool call_all_output_node_accessors(ExecutionWorkload &workload); /** Prepares all tasks for execution * * @param[in] workload Workload to prepare -- cgit v1.2.1