Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • $\begingroup$ ParallelTable[od[specRow[[i, j]]], {i, 1, 3}, {j, 1, 21}]; <- parallelization happens only according to the first iterator, {i, 1, 3}, meaning that this particular computation won't use more than 3 kernels. Workaround: Create the {i,j} pairs first, using Tuples, then ParallelMap an appropriate function over them. $\endgroup$ Commented Nov 3, 2017 at 13:55
  • $\begingroup$ Thanks, I'll try it. $\endgroup$ Commented Nov 3, 2017 at 13:59
  • $\begingroup$ @Szabolcs, things doesn't change if the code can call more kernels. $\endgroup$ Commented Nov 3, 2017 at 15:54