@threads loop
function(parameters_1)
function(parameters_2)
end
I would like to maximize load, problem is that sometimes everything is finished but the last iteration of the loop, meaning function(parameters_2) has to wait for function(parameters_1) to finish.
I don’t know how to handle that.