forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
[flang][OpenMP] Add support for multi-range do concurrent
loops
#89
Merged
Commits on Jun 4, 2024
-
[flang][OpenMP] Add support for multi-range
do concurrent
loopsExtends `do concurrent` to OpenMP mapping by adding support for multi-range loops. The current implementation only works for perfectly nested loops. So taking this input: ```fortran do concurrent(i=1:n, j=1:m) a(i,j,k) = i * j end do ``` will behave in exactly the same way as this input: ``` do concurrent(i=1:n) do concurrent(j=1:m) a(i,j,k) = i * j end do end do ```
Configuration menu - View commit details
-
Copy full SHA for 39b7f84 - Browse repository at this point
Copy the full SHA 39b7f84View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1031766 - Browse repository at this point
Copy the full SHA 1031766View commit details -
Configuration menu - View commit details
-
Copy full SHA for af9caff - Browse repository at this point
Copy the full SHA af9caffView commit details -
Configuration menu - View commit details
-
Copy full SHA for d986a09 - Browse repository at this point
Copy the full SHA d986a09View commit details -
Configuration menu - View commit details
-
Copy full SHA for f1da6ed - Browse repository at this point
Copy the full SHA f1da6edView commit details -
Configuration menu - View commit details
-
Copy full SHA for e3877cb - Browse repository at this point
Copy the full SHA e3877cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c1ad65 - Browse repository at this point
Copy the full SHA 1c1ad65View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4dca08a - Browse repository at this point
Copy the full SHA 4dca08aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 63d8ee3 - Browse repository at this point
Copy the full SHA 63d8ee3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cacd75 - Browse repository at this point
Copy the full SHA 3cacd75View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00881b5 - Browse repository at this point
Copy the full SHA 00881b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1beb7e0 - Browse repository at this point
Copy the full SHA 1beb7e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61dca9c - Browse repository at this point
Copy the full SHA 61dca9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce8102d - Browse repository at this point
Copy the full SHA ce8102dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 46a8331 - Browse repository at this point
Copy the full SHA 46a8331View commit details -
Configuration menu - View commit details
-
Copy full SHA for 536bd44 - Browse repository at this point
Copy the full SHA 536bd44View commit details -
Configuration menu - View commit details
-
Copy full SHA for bbe1a80 - Browse repository at this point
Copy the full SHA bbe1a80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 259c82b - Browse repository at this point
Copy the full SHA 259c82bView commit details
Commits on Jun 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2b50505 - Browse repository at this point
Copy the full SHA 2b50505View commit details
Commits on Jun 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c715287 - Browse repository at this point
Copy the full SHA c715287View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.