[Mlir-commits] [mlir] [mlir][xegpu] Improve XeGPU op verification logic for SIMT flavor and update tests. (PR #127920)

Artem Kroviakov llvmlistbot at llvm.org
Mon Feb 24 10:47:10 PST 2025


================
@@ -252,6 +258,16 @@ LogicalResult TensorDescType::verify(
       return emitError() << "expected non-contiguous elements for 1D tensor";
     if (rank == 2 && chunkSize < 2)
       return emitError() << "expected chunk blocks for 2D tensor";
+    // If chunk size > 1, the the second dimension of the tensor shape must be
----------------
akroviakov wrote:

```suggestion
    // If chunk size > 1, the second dimension of the tensor shape must be
```

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


More information about the Mlir-commits mailing list