Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRAffine.cpp186 PyAffineExpr lhs() { in lhs()
191 PyAffineExpr rhs() { in rhs()
209 static PyAffineAddExpr get(PyAffineExpr lhs, const PyAffineExpr &rhs) { in get()
238 static PyAffineMulExpr get(PyAffineExpr lhs, const PyAffineExpr &rhs) { in get()
267 static PyAffineModExpr get(PyAffineExpr lhs, const PyAffineExpr &rhs) { in get()
296 static PyAffineFloorDivExpr get(PyAffineExpr lhs, const PyAffineExpr &rhs) { in get()
325 static PyAffineCeilDivExpr get(PyAffineExpr lhs, const PyAffineExpr &rhs) { in get()
349 bool PyAffineExpr::operator==(const PyAffineExpr &other) { in operator ==()
358 PyAffineExpr PyAffineExpr::createFromCapsule(py::object capsule) { in createFromCapsule()
362 return PyAffineExpr( in createFromCapsule()
[all …]
H A DIRModule.h940 class PyAffineExpr : public BaseContextObject {
942 PyAffineExpr(PyMlirContextRef contextRef, MlirAffineExpr affineExpr) in PyAffineExpr() function
944 bool operator==(const PyAffineExpr &other);
955 static PyAffineExpr createFromCapsule(pybind11::object capsule);
957 PyAffineExpr add(const PyAffineExpr &other) const;
958 PyAffineExpr mul(const PyAffineExpr &other) const;
959 PyAffineExpr floorDiv(const PyAffineExpr &other) const;
960 PyAffineExpr ceilDiv(const PyAffineExpr &other) const;
961 PyAffineExpr mod(const PyAffineExpr &other) const;