Skip to content
Snippets Groups Projects
Commit 153d7ccd authored by Leo Gordon's avatar Leo Gordon
Browse files

checked in by mistake last time; took back the changes now

parent 26a2ced3
No related branches found
No related tags found
No related merge requests found
......@@ -128,10 +128,10 @@ sub pipeline_analyses {
{ 'a_multiplier' => $self->o('second_mult'), 'b_multiplier' => $self->o('first_mult') },
],
-flow_into => {
# 2 => [ 'part_multiply' ], # will create a fan of jobs
# 1 => [ 'add_together' ], # will create a funnel job to wait for the fan to complete and add the results
'2->A' => [ 'part_multiply' ], # will create a semaphored fan of jobs (comment out the -wait_for rule from 'add_together')
'A->1' => [ 'add_together' ], # will create a semaphored funnel job to wait for the fan to complete and add the results
2 => [ 'part_multiply' ], # will create a fan of jobs
1 => [ 'add_together' ], # will create a funnel job to wait for the fan to complete and add the results
# '2->A' => [ 'part_multiply' ], # will create a semaphored fan of jobs (comment out the -wait_for rule from 'add_together')
# 'A->1' => [ 'add_together' ], # will create a semaphored funnel job to wait for the fan to complete and add the results
},
},
......@@ -153,8 +153,7 @@ sub pipeline_analyses {
-input_ids => [
# (jobs for this analysis will be flown_into via branch-1 from 'start' jobs above)
],
# -wait_for => [ 'part_multiply' ], # we can only start adding when all partial products have been computed
-priority => 10,
-wait_for => [ 'part_multiply' ], # we can only start adding when all partial products have been computed
-flow_into => {
1 => [ ':////final_result' ],
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment