Skip to content
Snippets Groups Projects
Commit 9b15e03e authored by Peter Thedens's avatar Peter Thedens
Browse files

testing circular tests

parent e72d4bcf
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ void graph_compute_node_rec(struct computation_graph *graph, int node_id, int de
if (node->processed_state != UNPROCESSED) {
return;
}
node->processed_state = DISCOVERED;
// node->processed_state = DISCOVERED;
int input_id;
for (input_id = 0; input_id < node->type->n_inputs; input_id++) {
int src_cntl_id = node->input_srcs[input_id].controller_id;
......@@ -225,7 +225,7 @@ void graph_compute_node_rec(struct computation_graph *graph, int node_id, int de
(*node->type->execute)(node->state, node->param_values, exec_input_vals, node->output_values);
}
}
node->processed_state = PROCESSED;
// node->processed_state = PROCESSED;
}
void graph_compute_nodes(struct computation_graph *graph, int* node_ids, int n_nodes) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment