Constraints
constraints
ConstraintVariableType: TypeAlias = Attribute | Sequence[Attribute] | int
module-attribute
Possible types that a constraint variable can have.
ConstraintVariableTypeT = TypeVar('ConstraintVariableTypeT', bound=ConstraintVariableType)
module-attribute
TypedAttributeCovT = TypeVar('TypedAttributeCovT', bound=TypedAttribute, covariant=True)
module-attribute
TypedAttributeT = TypeVar('TypedAttributeT', bound=TypedAttribute)
module-attribute
ParametrizedAttributeT = TypeVar('ParametrizedAttributeT', bound=ParametrizedAttribute)
module-attribute
ParametrizedAttributeCovT = TypeVar('ParametrizedAttributeCovT', bound=ParametrizedAttribute, covariant=True)
module-attribute
ConstraintContext
dataclass
Contains the assignment of constraint variables.
Source code in xdsl/irdl/constraints.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
attr_variables: AbstractSet[str]
property
range_variables: AbstractSet[str]
property
int_variables: AbstractSet[str]
property
__init__(_variables: dict[str, Attribute] = dict[str, Attribute](), _range_variables: dict[str, tuple[Attribute, ...]] = dict[str, tuple[Attribute, ...]](), _int_variables: dict[str, int] = dict[str, int]()) -> None
get_variable(key: str) -> Attribute | None
Source code in xdsl/irdl/constraints.py
50 51 | |
get_range_variable(key: str) -> tuple[Attribute, ...] | None
Source code in xdsl/irdl/constraints.py
53 54 | |
get_int_variable(key: str) -> int | None
Source code in xdsl/irdl/constraints.py
56 57 | |
set_attr_variable(key: str, attr: Attribute)
Source code in xdsl/irdl/constraints.py
59 60 | |
set_range_variable(key: str, attrs: tuple[Attribute, ...])
Source code in xdsl/irdl/constraints.py
62 63 | |
set_int_variable(key: str, i: int)
Source code in xdsl/irdl/constraints.py
65 66 | |
copy()
Source code in xdsl/irdl/constraints.py
80 81 82 83 84 85 86 | |
update(other: ConstraintContext)
Source code in xdsl/irdl/constraints.py
88 89 90 91 92 | |
AttrConstraint
dataclass
Bases: ABC, Generic[AttributeCovT]
Constrain an attribute to a certain value.
Source code in xdsl/irdl/constraints.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
__init__() -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
abstractmethod
Check if the attribute satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
109 110 111 112 113 114 115 116 117 118 119 | |
verifies(attr: Attribute) -> TypeGuard[AttributeCovT]
A helper method to check whether a given attribute matches self.
Source code in xdsl/irdl/constraints.py
121 122 123 124 125 126 127 128 129 | |
variables() -> set[str]
Returns a set of the variables that can be extracted by this constraint.
These variables are always expected to be set after running verify.
Source code in xdsl/irdl/constraints.py
131 132 133 134 135 136 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Check if there is enough information to infer the attribute given the constraint variables that are already set.
Source code in xdsl/irdl/constraints.py
138 139 140 141 142 143 144 | |
infer(context: ConstraintContext) -> AttributeCovT
Infer the attribute given the the values for all variables.
Raises an exception if the attribute cannot be inferred. If can_infer
returns True with the given constraint variables, this method should
not raise an exception.
Source code in xdsl/irdl/constraints.py
146 147 148 149 150 151 152 153 154 | |
get_bases() -> set[type[Attribute]] | None
Get a set of base types that can satisfy this constraint, if there exists a finite collection, or None otherwise.
Source code in xdsl/irdl/constraints.py
156 157 158 159 160 161 | |
__or__(value: AttrConstraint[_AttributeCovT]) -> AttrConstraint[AttributeCovT | _AttributeCovT]
Source code in xdsl/irdl/constraints.py
163 164 165 166 167 168 | |
__and__(value: AttrConstraint) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
170 171 172 173 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
abstractmethod
A helper function to make type vars used in attribute definitions concrete when creating constraints for new attributes or operations.
Source code in xdsl/irdl/constraints.py
175 176 177 178 179 180 181 182 183 184 185 | |
VarConstraint
dataclass
Bases: AttrConstraint[AttributeCovT]
Constrain an attribute with the given constraint, and constrain all occurences of this constraint (i.e, sharing the same name) to be equal.
Source code in xdsl/irdl/constraints.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
constraint: AttrConstraint[AttributeCovT]
instance-attribute
The constraint that the variable must satisfy.
__init__(name: str, constraint: AttrConstraint[AttributeCovT]) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
226 227 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
229 230 231 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
233 234 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
236 237 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> VarConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
239 240 241 242 243 244 | |
TypeVarConstraint
dataclass
Bases: AttrConstraint
Stores the TypeVar instance used to define a generic ParametrizedAttribute.
Source code in xdsl/irdl/constraints.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | |
type_var: TypeVar
instance-attribute
The instance of the TypeVar used in the definition.
base_constraint: AttrConstraint
instance-attribute
Constraint inferred from the base of the TypeVar.
__init__(type_var: TypeVar, base_constraint: AttrConstraint) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
259 260 261 262 263 264 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
266 267 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint
Source code in xdsl/irdl/constraints.py
269 270 271 272 273 274 275 276 277 | |
ConstraintVar
dataclass
Annotation used in PyRDL to define a constraint variable. For instance, the following code defines a constraint variable T, that can then be used in PyRDL:
T = Annotated[PyRDLConstraint, ConstraintVar("T")]
Source code in xdsl/irdl/constraints.py
280 281 282 283 284 285 286 287 288 289 290 291 292 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
__init__(name: str) -> None
EqAttrConstraint
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Constrain an attribute to be equal to another attribute.
Source code in xdsl/irdl/constraints.py
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | |
attr: AttributeCovT
instance-attribute
The attribute we want to check equality with.
__init__(attr: AttributeCovT) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
302 303 304 305 306 307 308 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
310 311 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
313 314 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
316 317 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
319 320 321 322 | |
BaseAttr
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Constrain an attribute to be of a given base type.
Source code in xdsl/irdl/constraints.py
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | |
attr: type[AttributeCovT]
instance-attribute
The expected attribute base type.
__init__(attr: type[AttributeCovT]) -> None
__repr__()
Source code in xdsl/irdl/constraints.py
332 333 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
335 336 337 338 339 340 341 342 343 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
345 346 347 348 349 350 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
352 353 354 355 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
357 358 359 360 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
362 363 364 365 | |
AnyAttr
dataclass
Bases: AttrConstraint
Constraint that is verified by all attributes.
Source code in xdsl/irdl/constraints.py
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | |
__init__() -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
385 386 387 388 389 390 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AnyAttr
Source code in xdsl/irdl/constraints.py
392 393 394 395 | |
__or__(value: AttrConstraint[_AttributeCovT])
Source code in xdsl/irdl/constraints.py
397 398 | |
__and__(value: AttrConstraint[AttributeCovT])
Source code in xdsl/irdl/constraints.py
400 401 | |
AnyOf
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Ensure that an attribute satisfies one of the given constraints.
Source code in xdsl/irdl/constraints.py
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 | |
attr_constrs: tuple[AttrConstraint[AttributeCovT], ...]
instance-attribute
The tuple of attribute constraints that are checked by this AnyOf constraint.
At most one constraint may be "abstract": an abstract constraint is a BaseAttr
for an abstract base class which can be inherited by other attribute classes.
This abstract attribute type is not runtime-final (i.e., does not have the @irdl_attr_definition decorator).
__init__(attr_constrs: Sequence[AttributeCovT | type[AttributeCovT] | AttrConstraint[AttributeCovT]])
Source code in xdsl/irdl/constraints.py
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
510 511 512 513 514 515 516 517 518 519 520 521 | |
__or__(value: AttrConstraint[_AttributeCovT]) -> AnyOf[AttributeCovT | _AttributeCovT]
Source code in xdsl/irdl/constraints.py
523 524 525 526 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
528 529 530 531 532 533 534 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
536 537 538 539 540 541 542 543 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AnyOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
545 546 547 548 549 550 | |
AllOf
dataclass
Bases: AttrConstraint[AttributeCovT]
Ensure that an attribute satisfies all the given constraints.
Source code in xdsl/irdl/constraints.py
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 | |
attr_constrs: tuple[AttrConstraint[AttributeCovT], ...]
instance-attribute
The list of constraints that are checked.
__init__(attr_constrs: tuple[AttrConstraint[AttributeCovT], ...]) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
580 581 582 583 584 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
586 587 588 589 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
591 592 593 594 595 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
597 598 599 600 601 602 603 604 605 606 607 | |
__and__(value: AttrConstraint) -> AllOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
609 610 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AllOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
612 613 614 615 616 617 | |
ParamAttrConstraint
dataclass
Bases: AttrConstraint[ParametrizedAttributeCovT], Generic[ParametrizedAttributeCovT]
Constrain an attribute to be of a given type, and also constrain its parameters with additional constraints.
Source code in xdsl/irdl/constraints.py
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | |
base_attr: type[ParametrizedAttributeCovT]
instance-attribute
The base attribute type.
param_constrs: tuple[AttrConstraint, ...]
instance-attribute
The attribute parameter constraints
__init__(base_attr: type[ParametrizedAttributeCovT], param_constrs: Sequence[IRDLAttrConstraint | None])
Source code in xdsl/irdl/constraints.py
641 642 643 644 645 646 647 648 649 650 651 652 653 | |
__repr__()
Source code in xdsl/irdl/constraints.py
655 656 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
676 677 678 679 680 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
682 683 684 685 | |
infer(context: ConstraintContext) -> ParametrizedAttributeCovT
Source code in xdsl/irdl/constraints.py
687 688 689 690 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
692 693 694 695 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> ParamAttrConstraint[ParametrizedAttributeCovT]
Source code in xdsl/irdl/constraints.py
697 698 699 700 701 702 703 | |
__or__(value: AttrConstraint[_AttributeCovT])
Source code in xdsl/irdl/constraints.py
705 706 707 708 709 710 711 712 713 714 715 716 717 | |
MessageConstraint
dataclass
Bases: AttrConstraint[AttributeCovT]
Attach a message to a constraint, to provide more context when the constraint is not satisfied.
Source code in xdsl/irdl/constraints.py
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
message: str
instance-attribute
__init__(constr: AttrConstraint[AttributeCovT] | AttributeCovT | type[AttributeCovT], message: str)
Source code in xdsl/irdl/constraints.py
730 731 732 733 734 735 736 737 738 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
740 741 742 743 744 745 746 747 748 749 750 751 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
753 754 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
756 757 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
759 760 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
762 763 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> MessageConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
765 766 767 768 769 770 | |
IntConstraint
dataclass
Bases: ABC
Constrain an integer to certain values.
Source code in xdsl/irdl/constraints.py
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 | |
__init__() -> None
verify(i: int, constraint_context: ConstraintContext) -> None
abstractmethod
Check if the integer satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
777 778 779 780 781 782 783 784 785 786 | |
variables() -> set[str]
Returns a set of the variables that can be extracted by this constraint.
These variables are always expected to be set after running verify.
Source code in xdsl/irdl/constraints.py
788 789 790 791 792 793 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Check if there is enough information to infer the integer given the constraint variables that are already set.
Source code in xdsl/irdl/constraints.py
795 796 797 798 799 800 801 | |
infer(context: ConstraintContext) -> int
Infer the attribute given the the values for all variables.
Raises an exception if the attribute cannot be inferred. If can_infer
returns True with the given constraint variables, this method should
not raise an exception.
Source code in xdsl/irdl/constraints.py
803 804 805 806 807 808 809 810 811 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
abstractmethod
A helper function to make type vars used in attribute definitions concrete when creating constraints for new attributes or operations.
Source code in xdsl/irdl/constraints.py
813 814 815 816 817 818 819 820 821 822 823 | |
AnyInt
dataclass
Bases: IntConstraint
Constraint that is verified by all integers.
Source code in xdsl/irdl/constraints.py
826 827 828 829 830 831 832 833 834 835 836 837 | |
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
831 832 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
834 835 836 837 | |
EqIntConstraint
dataclass
Bases: IntConstraint
Constrain an integer to a value.
Source code in xdsl/irdl/constraints.py
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 | |
value: int
instance-attribute
__init__(value: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
846 847 848 849 850 851 852 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
854 855 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
857 858 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
860 861 862 863 | |
NotEqualIntConstraint
dataclass
Bases: IntConstraint
Constrain an integer to not be equal to a given value.
Source code in xdsl/irdl/constraints.py
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 | |
value: int
instance-attribute
The value the integer must not be equal to.
__init__(value: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
873 874 875 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
877 878 879 880 | |
IntSetConstraint
dataclass
Bases: IntConstraint
Constrain an integer to one of a set of integers.
Source code in xdsl/irdl/constraints.py
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 | |
values: frozenset[int]
instance-attribute
__init__(values: frozenset[int]) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
889 890 891 892 893 894 895 896 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
898 899 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
901 902 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
904 905 906 907 | |
AtLeast
dataclass
Bases: IntConstraint
Constrain an integer to be at least a given value.
Source code in xdsl/irdl/constraints.py
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 | |
bound: int
instance-attribute
The minimum value the integer can take.
__init__(bound: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
917 918 919 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
921 922 923 924 | |
AtMost
dataclass
Bases: IntConstraint
Constrain an integer to be at most a given value.
Source code in xdsl/irdl/constraints.py
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 | |
bound: int
instance-attribute
The maximum value the integer can take.
__init__(bound: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
934 935 936 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
938 939 940 941 | |
IntVarConstraint
dataclass
Bases: IntConstraint
Constrain an integer with the given constraint, and constrain all occurences of this constraint (i.e, sharing the same name) to be equal.
Source code in xdsl/irdl/constraints.py
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
constraint: IntConstraint
instance-attribute
The constraint that the variable must satisfy.
__init__(name: str, constraint: IntConstraint) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
957 958 959 960 961 962 963 964 965 966 967 968 969 970 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
972 973 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
975 976 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
978 979 980 981 982 983 984 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
986 987 988 989 990 991 | |
IntTypeVarConstraint
dataclass
Bases: IntConstraint
Stores the TypeVar instance used to define a generic type.
Source code in xdsl/irdl/constraints.py
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 | |
type_var: TypeVar
instance-attribute
The instance of the TypeVar used in the definition.
base_constraint: IntConstraint
instance-attribute
Constraint inferred from the base of the TypeVar.
__init__(type_var: TypeVar, base_constraint: IntConstraint) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1006 1007 1008 1009 1010 1011 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
1013 1014 1015 1016 1017 1018 1019 1020 1021 | |
RangeConstraint
dataclass
Bases: ABC, Generic[AttributeCovT]
Constrain a range of attributes to certain values.
Source code in xdsl/irdl/constraints.py
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 | |
__init__() -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
abstractmethod
Check if the range satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 | |
verifies(attrs: Sequence[Attribute]) -> TypeGuard[AttributeCovT]
A helper method to check whether a given attribute matches self.
Source code in xdsl/irdl/constraints.py
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
abstractmethod
Check if the length of the range satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
1052 1053 1054 1055 1056 1057 | |
variables() -> set[str]
Returns a set of the variables that can be extracted by this constraint.
These variables are always expected to be set after running verify.
Source code in xdsl/irdl/constraints.py
1059 1060 1061 1062 1063 1064 | |
variables_from_length() -> set[str]
Returns a set of the variables that can be extracted from the range length by this constraint.
These variables are always expected to be set after running verify_length.
Source code in xdsl/irdl/constraints.py
1066 1067 1068 1069 1070 1071 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Check if there is enough information to infer the attribute given the constraint variables that are already set, and whether the length of the range is known in advance.
Source code in xdsl/irdl/constraints.py
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Infer the attribute given the the values for all variables, and possibly the length of the range if known.
Raises an exception if the attribute cannot be inferred. If can_infer
returns True with the given constraint variables, this method should
not raise an exception.
Source code in xdsl/irdl/constraints.py
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeConstraint[AttributeCovT]
abstractmethod
A helper function to make type vars used in attribute definitions concrete when creating constraints for new attributes or operations.
Source code in xdsl/irdl/constraints.py
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 | |
of_length(length_constr: int | TypeForm[int] | IntConstraint) -> RangeLengthConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1109 1110 1111 1112 1113 1114 1115 1116 | |
RangeLengthConstraint
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain an attribute range with the given length.
Source code in xdsl/irdl/constraints.py
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 | |
constraint: RangeConstraint[AttributeCovT]
instance-attribute
The constraint that the variable must satisfy.
length: IntConstraint
instance-attribute
The length that the range must have
__init__(constraint: RangeConstraint[AttributeCovT], length: IntConstraint) -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1131 1132 1133 1134 1135 1136 1137 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1139 1140 1141 1142 1143 1144 1145 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1147 1148 | |
variables_from_length() -> set[str]
Source code in xdsl/irdl/constraints.py
1150 1151 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1165 1166 1167 1168 1169 1170 1171 1172 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeLengthConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1174 1175 1176 1177 1178 1179 1180 | |
RangeVarConstraint
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain an attribute range with the given constraint, and constrain all occurences of this constraint (i.e, sharing the same name) to be equal.
Source code in xdsl/irdl/constraints.py
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
constraint: RangeConstraint[AttributeCovT]
instance-attribute
The constraint that the variable must satisfy.
__init__(name: str, constraint: RangeConstraint[AttributeCovT]) -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1212 1213 1214 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1216 1217 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1219 1220 1221 1222 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1224 1225 1226 1227 1228 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeVarConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1230 1231 1232 1233 1234 1235 | |
RangeOf
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain each element in a range to satisfy a given constraint.
Source code in xdsl/irdl/constraints.py
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
__init__(constr: IRDLAttrConstraint[AttributeCovT])
Source code in xdsl/irdl/constraints.py
1246 1247 1248 1249 | |
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1251 1252 1253 1254 1255 1256 1257 | |
verify_length(length: int, constraint_context: ConstraintContext)
Source code in xdsl/irdl/constraints.py
1259 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1261 1262 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1264 1265 1266 1267 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1269 1270 1271 1272 1273 1274 1275 1276 1277 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1279 1280 1281 1282 | |
SingleOf
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain a range to only contain a single element, which should satisfy a given constraint.
Source code in xdsl/irdl/constraints.py
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
__init__(constr: AttrConstraint[AttributeCovT]) -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1293 1294 1295 1296 1297 1298 1299 1300 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1302 1303 1304 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1306 1307 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: int | None) -> bool
Source code in xdsl/irdl/constraints.py
1309 1310 1311 1312 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1314 1315 1316 1317 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> SingleOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1319 1320 1321 1322 | |
attr_constr_coercion(attr: AttributeCovT | type[AttributeCovT] | AttrConstraint[AttributeCovT]) -> AttrConstraint[AttributeCovT]
Attributes are coerced into EqAttrConstraints, and Attribute types are coerced into BaseAttr.
Source code in xdsl/irdl/constraints.py
368 369 370 371 372 373 374 375 376 377 378 | |