6 lines
305 B
Smalltalk
6 lines
305 B
Smalltalk
# Check that use of isolate option prevents shifted stride detection
|
|
domain: "{ A[i,j] : 0 <= i < 100 and 0 <= j < 2; B[i,j] : 0 <= i < 100 and 0 <= j < 2 }"
|
|
child:
|
|
schedule: "[{ A[i,j] -> [2i]; B[i,j] -> [2i+1] }, { A[i,j] -> [j]; B[i,j] -> [j]}]"
|
|
options: "{ isolate[[] -> [x, y]] : 10 <= x < 90 }"
|