[Mlir-commits] [mlir] [OpenMP][MLIR] Add omp.distribute op to the OMP dialect (PR #67720)
Kiran Chandramohan
llvmlistbot at llvm.org
Thu Oct 26 16:38:47 PDT 2023
kiranchandramohan wrote:
Is the plan to lower as the following :
-> !$omp distribute
```
omp.distribute {
omp.canonical_loop {
}
}
```
-> !$omp distribute simd
```
omp.distribute {
omp.simd {
}
}
```
-> !$omp distribute parallel do
```
omp.distribute {
omp.parallel {
omp.wsloop {
}
}
}
```
-> !$omp distribute parallel do simd
```
omp.distribute {
omp.parallel {
omp.wsloop {
omp.simd {
}
}
}
}
```
https://github.com/llvm/llvm-project/pull/67720
More information about the Mlir-commits
mailing list