Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bump the LLVM submodule to include two breakages fixes.

-
llvm/llvm-project@4623c11
-
llvm/llvm-project@46bd65a
  • Loading branch information
hanhanW authored Feb 29, 2024
1 parent db2db0a commit 42232b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,12 +420,12 @@ static bool collapseDimensions(IRRewriter &rewriter,
OpBuilder::InsertionGuard g(rewriter);
rewriter.setInsertionPoint(genericOp.value());

FailureOr<SmallVector<Value>> maybeReplacements =
FailureOr<linalg::CollapseResult> maybeReplacements =
mlir::linalg::collapseOpIterationDims(genericOp.value(), collapseIndices,
rewriter);
if (failed(maybeReplacements))
return false;
rewriter.replaceOp(genericOp.value(), maybeReplacements.value());
rewriter.replaceOp(genericOp.value(), maybeReplacements->results);
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion third_party/llvm-project

0 comments on commit 42232b5

Please sign in to comment.