[Mlir-commits] [mlir] fe0508d - [mlir][sparse] fix typos in integration tests
Aart Bik
llvmlistbot at llvm.org
Tue Nov 30 15:32:27 PST 2021
Author: Aart Bik
Date: 2021-11-30T15:32:20-08:00
New Revision: fe0508dc9d42201128a5b9016350e31b0ab41a79
URL: https://github.com/llvm/llvm-project/commit/fe0508dc9d42201128a5b9016350e31b0ab41a79
DIFF: https://github.com/llvm/llvm-project/commit/fe0508dc9d42201128a5b9016350e31b0ab41a79.diff
LOG: [mlir][sparse] fix typos in integration tests
Reviewed By: bixia, wrengr
Differential Revision: https://reviews.llvm.org/D114820
Added:
Modified:
mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
Removed:
################################################################################
diff --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
index 08343231bdb72..f15f0a6384a32 100644
--- a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
+++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
@@ -67,7 +67,6 @@ module {
%st2 = sparse_tensor.convert %t2
: tensor<3x3x4xi32> to tensor<?x?x?xi32, #SparseTensor>
-
// Call kernel.
%0 = call @redsum(%st1, %st2)
: (tensor<?x?x?xi32, #SparseTensor>,
diff --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
index d076ec5362cd8..ee562884c6e7f 100644
--- a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
+++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
@@ -36,7 +36,7 @@
affine_map<(i,j) -> (i,j)> // X (out)
],
iterator_types = ["parallel", "parallel"],
- doc = "X(i,j) += X(i,j) * X(i,j)"
+ doc = "X(i,j) *= X(i,j)"
}
//
More information about the Mlir-commits
mailing list