Skip to content
Snippets Groups Projects
Commit 6dceed7e authored by Houssem ROUIS's avatar Houssem ROUIS
Browse files

fix python binding for matmul

parent b096e315
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,6 @@ void init_MatMul(py::module &m) {
py::class_<MatMul_Op, std::shared_ptr<MatMul_Op>, OperatorTensor>(m, "MatMulOp", py::multiple_inheritance())
.def("get_inputs_name", &MatMul_Op::getInputsName)
.def("get_outputs_name", &MatMul_Op::getOutputsName)
.def("attributes_name", &MatMul_Op::staticGetAttrsName);
m.def("MatMul", &MatMul, py::arg("name") = "");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment