Harald Servat

Results 19 comments of Harald Servat

It seems that the issue comes from the translation of this OpenACC statement `#pragma acc data create(a) copyin(sm) copyout(a[0:N][0:N])` which is translated into `#pragma omp target data map(to:sm) map(from:a[0:N][0:N]) map(alloc:a)`...

@vidyalathabadde -- after scrutinizing the OpenMP spec with some of my colleagues, it seems that the Fortran compiler is wrong. It seems legit that the same variable appears in more...

Hello @vidyalathabadde -- I was on vacation. I'm afraid that this particular issue needs manual fixing as of now. The OpenACC > OpenMP tool could check for the same variable...

@vidyalathabadde -- I have extended the tool to raise warnings whenever this issue is detected. For instance, in the example you shared, it shows: ``` * Line 96 contains the...

Working on this. Will come back to you when I have some feedback.

BTW -- just tested in our compilers. The ```tile``` construct currently works in ICPX but fails in IFX. I have filed a ticket to our compiler teams so that they...

@Lyphion -- I've been told that the tile issue you reported will be fixed in 2025.0

Will work on the tile translation in the following days when I have an internal nightly compiler that I can test it.