Home
last modified time | relevance | path

Searched refs:PyOperationIterator (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/mlir/lib/Bindings/Python/
DIRModules.cpp315 class PyOperationIterator { class
317 PyOperationIterator(PyOperationRef parentOperation, MlirOperation next) in PyOperationIterator() function in __anon5d00d29b0111::PyOperationIterator
320 PyOperationIterator &dunderIter() { return *this; } in dunderIter()
335 py::class_<PyOperationIterator>(m, "OperationIterator") in bind()
336 .def("__iter__", &PyOperationIterator::dunderIter) in bind()
337 .def("__next__", &PyOperationIterator::dunderNext); in bind()
354 PyOperationIterator dunderIter() { in dunderIter()
356 return PyOperationIterator(parentOperation, in dunderIter()
2940 return PyOperationIterator(self.getParentOperation(), in populateIRSubmodule()
3207 PyOperationIterator::bind(m); in populateIRSubmodule()