[mlir][sparse] fix typos in integration tests

Reviewed By: bixia, wrengr

Differential Revision: https://reviews.llvm.org/D114820
This commit is contained in:
Aart Bik 2021-11-30 14:08:41 -08:00
parent 1ee6f7add1
commit fe0508dc9d
2 changed files with 1 additions and 2 deletions

View 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>,

View 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)"
}
//