[mlir][sparse] fix typos in integration tests
authorAart Bik <ajcbik@google.com>
Tue, 30 Nov 2021 22:08:41 +0000 (14:08 -0800)
committerAart Bik <ajcbik@google.com>
Tue, 30 Nov 2021 23:32:20 +0000 (15:32 -0800)
Reviewed By: bixia, wrengr

Differential Revision: https://reviews.llvm.org/D114820

mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir

index 0834323..f15f0a6 100644 (file)
@@ -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>,
index d076ec5..ee56288 100644 (file)
@@ -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)"
 }
 
 //