| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
Reland [mlir] Fix integration test when %host_cc path contains spaces (#128542) Reland https://github.com/llvm/llvm-project/pull/128439 Some builders have spaces at the end of the host_cc path. | 1 年前 | |
[mlir][memref] Fix memory leaks in print-memref.mlir (#137590) This fixes the test when running with ASAN. | 1 年前 | |
[MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 (#162533) [MLIR] Fix test failures for generate-runtime-verification pass from PR #160331 PR #160331 introduced a mistake that removed the error message for generate-runtime-verification pass, leading to test failures during test-build-check-mlir-build-only-check-mlir. This patch restores the missing error message. In addition, for related tests, the op strings used in FileChecks are updated with the same op formats as used in input mlirs. Verified locally. Fixes post-merge regression from: https://github.com/llvm/llvm-project/pull/160331 | 9 个月前 | |
[mlir][memref] Fix runtime verification for memref.subview for empty memref subviews (#166581) This PR applies the same fix from #166569 to memref.subview. That PR fixed the issue for tensor.extract_slice, and this one addresses the identical problem for memref.subview. The runtime verification for memref.subview incorrectly rejects valid empty subviews (size=0) starting at the memref boundary. **Example that demonstrates the issue:** mlir func.func @subview_with_empty_slice(%memref: memref<10x4x1xf32, strided<[?, ?, ?], offset: ?>>, %dim_0: index, %dim_1: index, %dim_2: index, %offset: index) { // When called with: offset=10, dim_0=0, dim_1=4, dim_2=1 // Runtime verification fails: "offset 0 is out-of-bounds" %subview = memref.subview %memref[%offset, 0, 0] [%dim_0, %dim_1, %dim_2] [1, 1, 1] : memref<10x4x1xf32, strided<[?, ?, ?], offset: ?>> to memref<?x?x?xf32, strided<[?, ?, ?], offset: ?>> return } When %offset=10 and %dim_0=0, we're creating an empty subview (zero elements along dimension 0) starting at the boundary. The current verification enforces offset < dim_size, which evaluates to 10 < 10 and fails. I feel this should be valid since no memory is accessed. **The fix:** Same as #166569 - make the offset check conditional on subview size: - Empty subview (size == 0): allow 0 <= offset <= dim_size - Non-empty subview (size > 0): require 0 <= offset < dim_size Please see #166569 for motivation and rationale. --- Co-authored-by: Hanumanth Hanumantharayappa <hhanuman@ah-hhanuman-l.dhcp.mathworks.com> | 8 个月前 | |
[mlir] Rename mlir-cpu-runner to mlir-runner (#123776) With the removal of mlir-vulkan-runner (as part of #73457) in e7e3c45bc70904e24e2b3221ac8521e67eb84668, mlir-cpu-runner is now the only runner for all CPU and GPU targets, and the "cpu" name has been misleading for some time already. This commit renames it to mlir-runner. | 1 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 9 个月前 | ||
| 9 个月前 | ||
| 9 个月前 | ||
| 9 个月前 | ||
| 9 个月前 | ||
| 9 个月前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 9 个月前 | ||
| 8 个月前 | ||
| 1 年前 |