On 08/27/15 13:25, Cesar Philippidis wrote:
On 08/27/2015 06:13 AM, Nathan Sidwell wrote:
I'll create a follow up patch for that later, probably after I finish
ok
working on the auto-independent loop patch. In the meantime, I'm found a
bug where acc routine calls aren't being checked for compatible
parallelism. E.g.
#pragma acc routine gang
void foo ();
...
#pragma acc parallel loop worker
for (...)
foo ();
The call to foo isn't being reported as an error, which it should. I'm
testing a fix for this.
Yeah, I discovered this yesterday, coincidentally when the partition merging
optimization blew up. thanks for fixing.
nathan