~mmach/netext73/isl

« back to all changes in this revision

Viewing changes to test_inputs/codegen/cloog/dot2.c

  • Committer: mmach
  • Date: 2020-11-29 19:49:17 UTC
  • Revision ID: netbit73@gmail.com-20201129194917-qo0ok1xcw924ou1l
0.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
  for (int c0 = 1; c0 <= min(M, N); c0 += 1) {
3
 
    S1(c0);
4
 
    for (int c1 = 1; c1 <= M; c1 += 1)
5
 
      S2(c0, c1);
6
 
  }
7
 
  for (int c0 = M + 1; c0 <= N; c0 += 1)
8
 
    for (int c1 = 1; c1 <= M; c1 += 1)
9
 
      S2(c0, c1);
10
 
  for (int c0 = N + 1; c0 <= M; c0 += 1)
11
 
    S1(c0);
 
1
for (int c0 = 1; c0 <= min(M, N); c0 += 1) {
 
2
  S1(c0);
 
3
  for (int c1 = 1; c1 <= M; c1 += 1)
 
4
    S2(c0, c1);
12
5
}
 
6
for (int c0 = N + 1; c0 <= M; c0 += 1)
 
7
  S1(c0);
 
8
for (int c0 = M + 1; c0 <= N; c0 += 1)
 
9
  for (int c1 = 1; c1 <= M; c1 += 1)
 
10
    S2(c0, c1);