标签: loops transformation
我有以下伪代码,我必须找到一种方法来对其进行转换,以使循环并行化。哪种方法最好?
do i=1, n do j=1, n A [i , j] = A [i -4, j-4] + A [i -3, j-3] end do end do