I have been vainly trying to solve the following problem for hours: "Make the neccessary loop transformations so that parallel executions are possible"
do i=1,n
do j=1,n
A[i,j]=A[i-3,j-3]+A[i-4,j-4]
end do
end do
Unfortunately,my loop transformation knowledge is poor.Therefore I will probably need a detailed explanation,if possible.Thank you in advance for your help!