https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99932

--- Comment #11 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Tom de Vries from comment #10)
> Rerunning the entire testsuite though shows that the non-32-vector-length
> test-cases are still failing.

Minimal example:
...
int
main (void)
{
#pragma acc parallel num_workers (2) vector_length (64)
  {
#pragma acc loop worker
    for (unsigned int i = 0; i < 2; i++)
#pragma acc loop vector
      for (unsigned int j = 0; j < 64; j++)
        ;
  }

  return 0;
}
...

Reply via email to