[Mlir-commits] [mlir] [mlir][linalg] Re-enable linalg runtime verification test (PR #170129)

Ryan Holt llvmlistbot at llvm.org
Mon Dec 1 05:05:24 PST 2025


https://github.com/ryanpholt created https://github.com/llvm/llvm-project/pull/170129

Test seems to pass after re-enabling without any additional changes.

>From f90b48ac7ceed715d57b97989854455308d8d110 Mon Sep 17 00:00:00 2001
From: Ryan Holt <ryanpholt at me.com>
Date: Sun, 30 Nov 2025 22:31:35 -0500
Subject: [PATCH] [mlir][linalg] Re-enable linalg runtime verification test

Test seems to pass after re-enabling without any additional changes.
---
 .../Dialect/Linalg/CPU/runtime-verification.mlir          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mlir/test/Integration/Dialect/Linalg/CPU/runtime-verification.mlir b/mlir/test/Integration/Dialect/Linalg/CPU/runtime-verification.mlir
index 610ed63168d87..c90476e1ff61d 100644
--- a/mlir/test/Integration/Dialect/Linalg/CPU/runtime-verification.mlir
+++ b/mlir/test/Integration/Dialect/Linalg/CPU/runtime-verification.mlir
@@ -80,10 +80,10 @@ func.func @main() {
   %c64x57 = arith.constant dense<0.0> : tensor<16x29xf32>
   %c3x4 = arith.constant dense<0.0> : tensor<3x4xf32>
 
-  // TODO: BROKEN CHK: ERROR: Runtime op verification failed
-  // TODO: BROKEN CHK-NEXT: linalg.generic
-  // TODO: BROKEN CHK-NEXT: unexpected negative result on dimension #0 of input/output operand #0
-  // TODO: BROKEN func.call @reverse_from_3(%d5x) : (tensor<?xf32>) -> (tensor<?xf32>)
+  // CHECK: ERROR: Runtime op verification failed
+  // CHECK-NEXT: linalg.generic
+  // CHECK-NEXT: unexpected negative result on dimension #0 of input/output operand #0
+  func.call @reverse_from_3(%d5x) : (tensor<?xf32>) -> (tensor<?xf32>)
 
   %c0x = arith.constant dense<1.0> : tensor<0xf32>
   %d0x = tensor.cast %c0x : tensor<0xf32> to tensor<?xf32>



More information about the Mlir-commits mailing list