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

Nick Kreeger llvmlistbot at llvm.org
Fri Jan 16 07:28:13 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;
----------------
nkreeger wrote:

Done - looks like some stuff changed upstream. Will keep an eye on CI.

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


More information about the Mlir-commits mailing list