I am trying to implement parallel processing for nested loops. However I am getting the following syntax error.
I am modifying the example from here ( Parallel computing in Julia - running a simple for-loop on multiple cores )
This works
for N in 1:5:20, H in 1:5:20
println("The N of this iteration in $N, $H")
end
This is giving syntax error
using Distributed
@distributed for N in 1:5:20, H in 1:5:20
println("The N of this iteration in $N, $H")
end
