[flang-commits] [flang] [llvm] [mlir] [flang][OpenMP] Enable tiling (PR #143715)
Michael Kruse via flang-commits
flang-commits at lists.llvm.org
Tue Aug 26 02:55:25 PDT 2025
================
@@ -482,6 +484,24 @@ bool ConstructDecompositionT<C, H>::applyClause(
return false;
}
+// FIXME(JAN): Do the correct thing, but for now we'll do the same as collapse
----------------
Meinersbur wrote:
There is a default overload that seems to do what we would want
```
template <typename C, typename H>
template <typename Specific>
bool ConstructDecompositionT<C, H>::applyClause(Specific &&specific,
const ClauseTy *node) {
// The default behavior is to find the unique directive to which the
// given clause may be applied. If there are no such directives, or
// if there are multiple ones, flag an error.
```
Is it sufficient to use this one?
https://github.com/llvm/llvm-project/pull/143715
More information about the flang-commits
mailing list