We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdd436e commit 2db4fddCopy full SHA for 2db4fdd
src/image_s.f90
@@ -83,10 +83,12 @@ function do_work(tasks, dag) result(tasks_left)
83
block
84
integer, allocatable :: upstream_task_nums(:)
85
integer, allocatable :: upstream_task_imagenums(:)
86
+ integer :: i
87
88
! figure out which images have our input data
89
upstream_task_nums = dag%dependencies_for(task_identifier)
- upstream_task_imagenums = task_assignment_history(upstream_task_nums)[scheduler_image]
90
+ upstream_task_imagenums = &
91
+ [(task_assignment_history(upstream_task_nums(i))[scheduler_image], i = 1, size(upstream_task_nums))]
92
93
! execute task, store result
94
mailbox(task_identifier) = &
0 commit comments