[Mlir-commits] [mlir] [mlir][linalg] fix segmentation fault in isContractionBody function (PR #108703)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu Sep 19 18:21:33 PDT 2024


================
@@ -222,7 +222,7 @@ bool mlir::linalg::detail::isContractionBody(
   Value contributed = getSourceSkipUnary(
       isa<BlockArgument>(reductionLHS) ? reductionRHS : reductionLHS);
   Operation *elementwiseOp = contributed.getDefiningOp();
-  if (elementwiseOp->getNumResults() != 1 ||
+  if (!elementwiseOp || elementwiseOp->getNumResults() != 1 ||
----------------
BRUCE11111 wrote:

Hello~   Could you please help me to approve this PR?  Thanks~

https://github.com/llvm/llvm-project/pull/108703


More information about the Mlir-commits mailing list