Skip to content

Commit

Permalink
[Attributor][NFX] Pre-commit test case exposing a problem
Browse files Browse the repository at this point in the history
The test case is the IR of:

```
  void func(float * restrict a, float *b, int N) {
    N = 199;
    #pragma omp parallel for
    for (int i = 1; i < N; i++)
      a[i] = b[i] + 1.0;
  }
```
  • Loading branch information
jdoerfert committed Oct 28, 2021
1 parent 734f914 commit 1720787
Showing 1 changed file with 304 additions and 0 deletions.

0 comments on commit 1720787

Please sign in to comment.