[Mlir-commits] [mlir] [mlir][Utils] Add verifyRanksMatch helper (NFC) (PR #175880)

Andrzej WarzyƄski llvmlistbot at llvm.org
Fri Jan 16 00:02:56 PST 2026


================
@@ -822,9 +822,8 @@ static LogicalResult verifyConvOpErrorIf(T op) {
       const int64_t calculatedOutSize = calculatedOutSizeMinusOne.value() + 1;
       if (outputSize != ShapedType::kDynamic && calculatedOutSize != outputSize)
         return op.emitOpError("calculated output ")
-               << dimName << " did not match expected: "
-               << "calculated=" << calculatedOutSize
-               << ", expected=" << outputSize;
+               << dimName << " did not match expected: " << "calculated="
+               << calculatedOutSize << ", expected=" << outputSize;
----------------
banach-space wrote:

Please revert this and other formatting changes - those are unrelated to this PR.

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


More information about the Mlir-commits mailing list