I want to make my coed run in Parallel, which is shown as below,
for j in range(nj):
for i in range(ni):
# assign matrix coefficient
This is a very large matrix, which results in very low execution time, how can I run this kind of code in Parallel?
Thanks in advance!