[Mlir-commits] [mlir] f56a738 - [mlir][sparse] Fixing sparse_reshape.mlir integration test (followup to D150822)
wren romano
llvmlistbot at llvm.org
Wed May 17 16:56:55 PDT 2023
Author: wren romano
Date: 2023-05-17T16:56:47-07:00
New Revision: f56a7383f0a51392b925a976812feb78f55486bf
URL: https://github.com/llvm/llvm-project/commit/f56a7383f0a51392b925a976812feb78f55486bf
DIFF: https://github.com/llvm/llvm-project/commit/f56a7383f0a51392b925a976812feb78f55486bf.diff
LOG: [mlir][sparse] Fixing sparse_reshape.mlir integration test (followup to D150822)
For some reason, even though D150822 passed the buildbot, it failed to
catch this test
Reviewed By: anlunx
Differential Revision: https://reviews.llvm.org/D150830
Added:
Modified:
mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_reshape.mlir
Removed:
################################################################################
diff --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_reshape.mlir b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_reshape.mlir
index 4945294f727e..e1de001a6dc4 100644
--- a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_reshape.mlir
+++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_reshape.mlir
@@ -16,15 +16,15 @@
// RUN: %{compile} | %{run}
#SparseVector = #sparse_tensor.encoding<{
- dimLevelType = ["compressed"]
+ lvlTypes = ["compressed"]
}>
#SparseMatrix = #sparse_tensor.encoding<{
- dimLevelType = ["compressed", "compressed"]
+ lvlTypes = ["compressed", "compressed"]
}>
#Sparse3dTensor = #sparse_tensor.encoding<{
- dimLevelType = ["compressed", "compressed", "compressed"]
+ lvlTypes = ["compressed", "compressed", "compressed"]
}>
module {
@@ -84,4 +84,4 @@ module {
return
}
-}
\ No newline at end of file
+}
More information about the Mlir-commits
mailing list