Skip to content
Snippets Groups Projects
Commit e09639e1 authored by vincent  lorrain's avatar vincent lorrain
Browse files

Merge remote-tracking branch 'origin/main' into graphRegex

parents b1dcd611 cba9f2ca
No related branches found
No related tags found
1 merge request!14Graph regex
......@@ -38,4 +38,4 @@ public:
};
}
#endif /* Hook_H_ */
\ No newline at end of file
#endif /* Hook_H_ */
......@@ -20,6 +20,7 @@ void init_Operator(py::module& m){
py::class_<Operator, std::shared_ptr<Operator>>(m, "Operator")
.def("output", &Operator::output, py::arg("outputIdx"))
.def("input", &Operator::input, py::arg("inputIdx"))
.def("nb_data_inputs", &Operator::nbDataInputs)
.def("associate_input", &Operator::associateInput, py::arg("inputIdx"), py::arg("data"))
.def("set_datatype", &Operator::setDatatype, py::arg("datatype"))
.def("set_backend", &Operator::setBackend, 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