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 parser does not recognize the follow inlined if-statement:
if( tha(i,j,k).gt. 1.0 ) thrad = -1.0/(12.0*3600.0)
The text was updated successfully, but these errors were encountered:
Would you mind to recheck with the develop-acc branch? It appears that this issue was fixed here.
develop-acc
Here, the above single-line statement is correctly converted into the following multiline statement:
if( tha(i,j,k).gt. 1.0 ) then thrad = -1.0/(12.0*3600.0) endif
Link to the corresponding test: https://github.com/ROCmSoftwarePlatform/gpufort/blob/develop-acc/python/test/linemapper/test.linemapper.linemapper.py
Sorry, something went wrong.
Thank you for your suggestion. Use of the develop-acc branch did indeed resolve this issue.
domcharrier
Successfully merging a pull request may close this issue.
The parser does not recognize the follow inlined if-statement:
if( tha(i,j,k).gt. 1.0 ) thrad = -1.0/(12.0*3600.0)
The text was updated successfully, but these errors were encountered: