[Mlir-commits] [mlir] [AffineParallelize] expose options when creating pass (PR #124959)
Diego Caballero
llvmlistbot at llvm.org
Wed Jan 29 17:08:03 PST 2025
================
@@ -42,6 +42,14 @@ namespace {
/// Convert all parallel affine.for op into 1-D affine.parallel op.
struct AffineParallelize
: public affine::impl::AffineParallelizeBase<AffineParallelize> {
+
+ AffineParallelize() = default;
+
----------------
dcaballe wrote:
These constructors should have been auto-generated in `AffineParallelizeBase`. You probably just need to make it visible here with `using AffineParallelizeBase<AffineParallelize>::AffineParallelizeBase`...
https://github.com/llvm/llvm-project/pull/124959
More information about the Mlir-commits
mailing list