Skip to content
Snippets Groups Projects
Commit 1843f7db authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix typo.

parent b3a467c1
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!73Quality of life
Pipeline #37526 failed
......@@ -52,6 +52,6 @@ void init_GenericOperator(py::module& m) {
}
return genericNode;
}
, py::arg("type"), py::arg("nb_data"), py::arg("nb_param"), py::arg("nb_out"), py::arg("name") = "", py::kw_only());
, py::arg("type"), py::arg("nb_data"), py::arg("nb_param"), py::arg("nb_out"), py::arg("name") = "");
}
} // namespace Aidge
......@@ -37,7 +37,7 @@ void init_Producer(py::module &m) {
.def("dims", &Producer_Op::dims)
.def("get_inputs_name", &Producer_Op::getInputsName)
.def("get_outputs_name", &Producer_Op::getOutputsName)
.def("attributes_name", &Producer_Op<DIM>::staticGetAttrsName);
.def("attributes_name", &Producer_Op::staticGetAttrsName);
m.def("Producer", static_cast<std::shared_ptr<Node>(*)(const std::shared_ptr<Tensor>, const std::string&, bool)>(&Producer), py::arg("tensor"), py::arg("name") = "", py::arg("constant") = false);
declare_Producer<1>(m);
......
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