Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRInterfaces.cpp189 llvm::Optional<std::vector<PyRegion>> regions, in inferReturnTypes()
204 for (PyRegion &region : *regions) { in inferReturnTypes()
H A DIRCore.cpp203 PyRegion dunderNext() { in dunderNext()
209 return PyRegion(operation, region); in dunderNext()
234 PyRegion dunderGetItem(intptr_t index) { in dunderGetItem()
241 return PyRegion(operation, region); in dunderGetItem()
2730 py::class_<PyRegion>(m, "Region", py::module_local()) in populateIRCore()
2733 [](PyRegion &self) { in populateIRCore()
2739 [](PyRegion &self) { in populateIRCore()
2745 [](PyRegion &self) { in populateIRCore()
2752 [](PyRegion &self, PyRegion &other) { in populateIRCore()
2788 [](PyRegion &parent, py::list pyArgTypes) { in populateIRCore()
[all …]
H A DIRModule.h668 class PyRegion {
670 PyRegion(PyOperationRef parentOperation, MlirRegion region) in PyRegion() function