aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/detail/ExecutionHelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph/detail/ExecutionHelpers.h')
-rw-r--r--arm_compute/graph/detail/ExecutionHelpers.h8
1 files changed, 6 insertions, 2 deletions
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