Skip to content

Commit

Permalink
Fix GCC build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry Wu committed Aug 11, 2023
1 parent 9510206 commit cab05b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ void DecomposeBatchMmt4DOpsPass::runOnOperation() {

// First tile the batch dim of linalg.batch_mmt4d into 1.
{
SmallVector<int64_t> tileSizes({1});
auto tileAndFuseOptions = scf::SCFTileAndFuseOptions().setTilingOptions(
scf::SCFTilingOptions().setTileSizes({1}));
scf::SCFTilingOptions().setTileSizes(tileSizes));
IRRewriter rewriter(ctx);
funcOp->walk([&](linalg::BatchMmt4DOp op) {
FailureOr<scf::SCFTileAndFuseResult> tileAndFuseResult =
Expand Down

0 comments on commit cab05b7

Please sign in to comment.