[flang-commits] [flang] [llvm] [mlir] [flang][OpenMP] Enable tiling (PR #143715)
Jan Leyonberg via flang-commits
flang-commits at lists.llvm.org
Tue Aug 26 04:51:15 PDT 2025
================
@@ -3449,13 +3500,9 @@ static void genOMPDispatch(lower::AbstractConverter &converter,
newOp = genTeamsOp(converter, symTable, stmtCtx, semaCtx, eval, loc, queue,
item);
break;
- case llvm::omp::Directive::OMPD_tile: {
- unsigned version = semaCtx.langOptions().OpenMPVersion;
- if (!semaCtx.langOptions().OpenMPSimd)
- TODO(loc, "Unhandled loop directive (" +
- llvm::omp::getOpenMPDirectiveName(dir, version) + ")");
+ case llvm::omp::Directive::OMPD_tile:
+ newOp = genLoopOp(converter, symTable, semaCtx, eval, loc, queue, item);
----------------
jsjodin wrote:
I may not be remembering this correctly though, it was some time back. I believe the LoopOp is actually added somewhere earlier, but I have to look into it.
https://github.com/llvm/llvm-project/pull/143715
More information about the flang-commits
mailing list