Displaying 1 result from an estimated 1 matches for "60e3b1b6".
2018 Sep 18
2
Regarding Dependence distance dump
Hi,
For the below test case, I need the dependence distance between the array
references "a[j][i]" and "a[j-1][i-2]".
--Snip--
int a[5][5];
int b[10];
void test()
{
for (int j=1;j<5;j++)
for (int i=2;i<5;i++)
{
a[j][i] = 3.0;
b[i]= a[j-1][i-2] ;
}
}
--Snip-