Skip to content

Commit 33785ec

Browse files
remove unused parameters
1 parent 492662d commit 33785ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/lib/Bindings/Python/DialectSparseTensor.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ static void populateDialectSparseTensorSubmodule(const py::module &m) {
6464
"build_level_type",
6565
[](py::object cls, MlirBaseSparseTensorLevelType lvlType, unsigned n,
6666
unsigned m) {
67-
return mlirSparseTensorEncodingAttrBuildLvlType(lvlType, ordered,
68-
unique, n, m);
67+
return mlirSparseTensorEncodingAttrBuildLvlType(lvlType, n, m);
6968
},
7069
py::arg("cls"), py::arg("lvl_type"), py::arg("n") = 0,
7170
py::arg("m") = 0,

0 commit comments

Comments
 (0)