Skip to content
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] Extend do concurrent mapping to device. #50

Merged
merged 10 commits into from
May 15, 2024

Commits on May 9, 2024

  1. [flang][OpenMP] Extend do concurrent mapping to device.

    For simple loops, we can now choose to map `do concurrent` to either the host (i.e. `omp parallel do`) or the device (i.e. `omp target teams distribute parallel do`).
    
    In order to use this from `flang-new`, you can pass: `-fopenmp -fdo-concurrent-parallel=[host|device|none]`; where `none` will disable the `do concurrent` mapping altogether.
    ergawy committed May 9, 2024
    Configuration menu
    Copy the full SHA
    62423e1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b854076 View commit details
    Browse the repository at this point in the history
  3. use mlir::dyn_cast

    ergawy committed May 9, 2024
    Configuration menu
    Copy the full SHA
    1c8ad61 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    1347e2f View commit details
    Browse the repository at this point in the history
  2. merge fixes

    ergawy committed May 14, 2024
    Configuration menu
    Copy the full SHA
    1bd0d48 View commit details
    Browse the repository at this point in the history
  3. review comments

    ergawy committed May 14, 2024
    Configuration menu
    Copy the full SHA
    b2a7d51 View commit details
    Browse the repository at this point in the history
  4. update cli options

    ergawy committed May 14, 2024
    Configuration menu
    Copy the full SHA
    71a1fa0 View commit details
    Browse the repository at this point in the history
  5. update desc

    ergawy committed May 14, 2024
    Configuration menu
    Copy the full SHA
    2ed6040 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. more cli changes

    ergawy committed May 15, 2024
    Configuration menu
    Copy the full SHA
    476fffe View commit details
    Browse the repository at this point in the history
  2. format

    ergawy committed May 15, 2024
    Configuration menu
    Copy the full SHA
    3bb1152 View commit details
    Browse the repository at this point in the history