forked from OSchip/llvm-project
[mlir][sparse] fix typos in integration tests
Reviewed By: bixia, wrengr Differential Revision: https://reviews.llvm.org/D114820
This commit is contained in:
parent
1ee6f7add1
commit
fe0508dc9d
|
@ -67,7 +67,6 @@ module {
|
||||||
%st2 = sparse_tensor.convert %t2
|
%st2 = sparse_tensor.convert %t2
|
||||||
: tensor<3x3x4xi32> to tensor<?x?x?xi32, #SparseTensor>
|
: tensor<3x3x4xi32> to tensor<?x?x?xi32, #SparseTensor>
|
||||||
|
|
||||||
|
|
||||||
// Call kernel.
|
// Call kernel.
|
||||||
%0 = call @redsum(%st1, %st2)
|
%0 = call @redsum(%st1, %st2)
|
||||||
: (tensor<?x?x?xi32, #SparseTensor>,
|
: (tensor<?x?x?xi32, #SparseTensor>,
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
affine_map<(i,j) -> (i,j)> // X (out)
|
affine_map<(i,j) -> (i,j)> // X (out)
|
||||||
],
|
],
|
||||||
iterator_types = ["parallel", "parallel"],
|
iterator_types = ["parallel", "parallel"],
|
||||||
doc = "X(i,j) += X(i,j) * X(i,j)"
|
doc = "X(i,j) *= X(i,j)"
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue