Nicholas Thompson
06/27/2022, 10:38 PMscheduler="processes"
. The input I'm passing to the mapped task is ordered, ideally so that tasks assigned to the first items in the list are run first, however this doesn't seem to be the case. With my machine that has six cores, on a given task run I can see that the mapped tasks with map_index
values 0, 1, 3, 13, 14, and 15 are run first, but ideally I would want this first batch of tasks to have map index values of 0, 1, 2, 3, 4 and 5.
tldr: is it possible to ensure that when mapping a task, the mapped tasks get run in the same order they appear as in the input array?Kevin Kho
06/28/2022, 7:47 AMNicholas Thompson
06/28/2022, 11:12 PM