Lines Matching refs:PyIntegerSet
432 PyIntegerSetConstraint(PyIntegerSet set, intptr_t pos) in PyIntegerSetConstraint()
450 PyIntegerSet set;
459 PyIntegerSetConstraintList(const PyIntegerSet &set, intptr_t startIndex = 0, in PyIntegerSetConstraintList()
481 PyIntegerSet set;
485 bool PyIntegerSet::operator==(const PyIntegerSet &other) { in operator ==()
489 py::object PyIntegerSet::getCapsule() { in getCapsule()
494 PyIntegerSet PyIntegerSet::createFromCapsule(py::object capsule) { in createFromCapsule()
498 return PyIntegerSet( in createFromCapsule()
832 py::class_<PyIntegerSet>(m, "IntegerSet", py::module_local()) in populateIRAffine()
834 &PyIntegerSet::getCapsule) in populateIRAffine()
835 .def(MLIR_PYTHON_CAPI_FACTORY_ATTR, &PyIntegerSet::createFromCapsule) in populateIRAffine()
836 .def("__eq__", [](PyIntegerSet &self, in populateIRAffine()
837 PyIntegerSet &other) { return self == other; }) in populateIRAffine()
838 .def("__eq__", [](PyIntegerSet &self, py::object other) { return false; }) in populateIRAffine()
840 [](PyIntegerSet &self) { in populateIRAffine()
847 [](PyIntegerSet &self) { in populateIRAffine()
856 [](PyIntegerSet &self) { in populateIRAffine()
861 [](PyIntegerSet &self) { return self.getContext().getObject(); }) in populateIRAffine()
863 "dump", [](PyIntegerSet &self) { mlirIntegerSetDump(self); }, in populateIRAffine()
887 return PyIntegerSet(context->getRef(), set); in populateIRAffine()
897 return PyIntegerSet(context->getRef(), set); in populateIRAffine()
903 [](PyIntegerSet &self, py::list dimExprs, py::list symbolExprs, in populateIRAffine()
926 return PyIntegerSet(self.getContext(), set); in populateIRAffine()
931 [](PyIntegerSet &self) { in populateIRAffine()
936 [](PyIntegerSet &self) { return mlirIntegerSetGetNumDims(self); }) in populateIRAffine()
939 [](PyIntegerSet &self) { return mlirIntegerSetGetNumSymbols(self); }) in populateIRAffine()
942 [](PyIntegerSet &self) { return mlirIntegerSetGetNumInputs(self); }) in populateIRAffine()
944 [](PyIntegerSet &self) { in populateIRAffine()
948 [](PyIntegerSet &self) { in populateIRAffine()
951 .def_property_readonly("constraints", [](PyIntegerSet &self) { in populateIRAffine()