We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the script is great but has some limitations . Its python2.x ( missing paranthesis for print, easy to solve )
however two main limitations for us : if a conditional execution is found , it ignores the directive ( example bellow ).
!$ACC ENTER DATA COPYIN(track_condition) IF ( track_condition_cnt > 0 )
and for multiline openacc directives it only translates the first one.
!$ACC ENTER DATA CREATE(shock_sensor, tempe, & !$ACC rrate, rrate_r)
Becomes
!$OMP TARGET ENTER DATA MAP(ALLOC:shock_sensor, tempe, & !$ACC rrate, rrate_r)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the script is great but has some limitations .
Its python2.x ( missing paranthesis for print, easy to solve )
however two main limitations for us : if a conditional execution is found , it ignores the directive ( example bellow ).
and for multiline openacc directives it only translates the first one.
Becomes
The text was updated successfully, but these errors were encountered: