Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRCore.cpp286 class PyBlockList { class
288 PyBlockList(PyOperationRef operation, MlirRegion region) in PyBlockList() function in __anon7f4419ab0111::PyBlockList
344 py::class_<PyBlockList>(m, "BlockList", py::module_local()) in bind()
345 .def("__getitem__", &PyBlockList::dunderGetItem) in bind()
346 .def("__iter__", &PyBlockList::dunderIter) in bind()
347 .def("__len__", &PyBlockList::dunderLen) in bind()
348 .def("append", &PyBlockList::appendBlock, kAppendBlockDocstring); in bind()
2734 return PyBlockList(self.getParentOperation(), self.get()); in populateIRCore()
3187 PyBlockList::bind(m); in populateIRCore()