We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Is it possible to make simultaneous calculations through an array? For example, lets assume we have a 2d array of floats and want to know the sum of all elements in a column for all columns. Is there a way to calculate these sums simultaneously for all columns and not one by one?
One way I can think of for doing this is using the GPU multicore architecture to parallelize the calculations but is this feasible with processing?
Answers
thread()?
Still, the function executes sequentially. I need something completely simultaneous
ask @gotoloop