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

[MLIR][OpenMP] NFC: Uniformize OpenMP ops names (llvm#85393) #53

Merged
merged 2 commits into from
Mar 20, 2024

Commits on Mar 20, 2024

  1. [MLIR][OpenMP] NFC: Uniformize OpenMP ops names (llvm#85393)

    This patch proposes the renaming of certain OpenMP dialect operations with the
    goal of improving readability and following a uniform naming convention for
    MLIR operations and associated classes. In particular, the following operations
    are renamed:
    
    - `omp.map_info` -> `omp.map.info`
    - `omp.target_update_data` -> `omp.target_update`
    - `omp.ordered_region` -> `omp.ordered.region`
    - `omp.cancellationpoint` -> `omp.cancellation_point`
    - `omp.bounds` -> `omp.map.bounds`
    - `omp.reduction.declare` -> `omp.declare_reduction`
    
    Also, the following MLIR operation classes have been renamed:
    
    - `omp::TaskLoopOp` -> `omp::TaskloopOp`
    - `omp::TaskGroupOp` -> `omp::TaskgroupOp`
    - `omp::DataBoundsOp` -> `omp::MapBoundsOp`
    - `omp::DataOp` -> `omp::TargetDataOp`
    - `omp::EnterDataOp` -> `omp::TargetEnterDataOp`
    - `omp::ExitDataOp` -> `omp::TargetExitDataOp`
    - `omp::UpdateDataOp` -> `omp::TargetUpdateOp`
    - `omp::ReductionDeclareOp` -> `omp::DeclareReductionOp`
    - `omp::WsLoopOp` -> `omp::WsloopOp`
    skatrak committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    4382511 View commit details
    Browse the repository at this point in the history
  2. Fix downstream naming issues

    skatrak committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    5bc2285 View commit details
    Browse the repository at this point in the history