Skip to content

Commit

Permalink
Fix gcc build (iree-org#10235)
Browse files Browse the repository at this point in the history
Prevent ambigous constructor call.
  • Loading branch information
ThomasRaoux authored Aug 29, 2022
1 parent 6fa18e0 commit 6d4b129
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ static void populateVectorizationPatterns(RewritePatternSet &patterns) {
linalg::LinalgVectorizationOptions opt;
linalg::LinalgTransformationFilter f(
{StringAttr::get(ctx, getWorkgroupKTiledMarker()),
StringAttr::get(ctx, getVectorizeMarker())});
StringAttr::get(ctx, getVectorizeMarker())},
llvm::None);
f.setMatchByDefault();
linalg::VectorizationPatterns<linalg::FillOp, linalg::GenericOp>::insert(
patterns, opt, f);
Expand Down

0 comments on commit 6d4b129

Please sign in to comment.