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
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 | |
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
52 53 | |
get_range_variable(key: str) -> tuple[Attribute, ...] | None
Source code in xdsl/irdl/constraints.py
55 56 | |
get_int_variable(key: str) -> int | None
Source code in xdsl/irdl/constraints.py
58 59 | |
set_attr_variable(key: str, attr: Attribute)
Source code in xdsl/irdl/constraints.py
61 62 | |
set_range_variable(key: str, attrs: tuple[Attribute, ...])
Source code in xdsl/irdl/constraints.py
64 65 | |
set_int_variable(key: str, i: int)
Source code in xdsl/irdl/constraints.py
67 68 | |
AttrConstraint
dataclass
Bases: ABC, Generic[AttributeCovT]
Constrain an attribute to a certain value.
Source code in xdsl/irdl/constraints.py
93 94 95 96 97 98 99 100 101 102 103 104 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 | |
__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
97 98 99 100 101 102 103 104 105 106 107 | |
verifies(attr: Attribute) -> TypeGuard[AttributeCovT]
A helper method to check whether a given attribute matches self.
Source code in xdsl/irdl/constraints.py
109 110 111 112 113 114 115 116 117 | |
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
119 120 121 122 123 124 | |
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
126 127 128 129 130 131 132 | |
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
134 135 136 137 138 139 140 141 142 | |
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
144 145 146 147 148 149 | |
__or__(value: AttrConstraint[_AttributeCovT]) -> AttrConstraint[AttributeCovT | _AttributeCovT]
Source code in xdsl/irdl/constraints.py
151 152 153 154 155 156 | |
__and__(value: AttrConstraint) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
158 159 160 161 | |
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
163 164 165 166 167 168 169 170 171 172 173 | |
AnyAttr
dataclass
Bases: AttrConstraint
Constraint that is verified by all attributes.
Source code in xdsl/irdl/constraints.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | |
__init__() -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
189 190 191 192 193 194 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AnyAttr
Source code in xdsl/irdl/constraints.py
196 197 198 199 | |
__or__(value: AttrConstraint[_AttributeCovT])
Source code in xdsl/irdl/constraints.py
201 202 | |
__and__(value: AttrConstraint[AttributeCovT])
Source code in xdsl/irdl/constraints.py
204 205 | |
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
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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | |
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
get(name: str, constraint: IRDLAttrConstraint[AttributeCovT] = AnyAttr())
staticmethod
Source code in xdsl/irdl/constraints.py
221 222 223 224 225 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
243 244 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
246 247 248 249 250 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
252 253 254 255 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
257 258 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> VarConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
260 261 262 263 264 265 | |
TypeVarConstraint
dataclass
Bases: AttrConstraint
Stores the TypeVar instance used to define a generic ParametrizedAttribute.
Source code in xdsl/irdl/constraints.py
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | |
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
280 281 282 283 284 285 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
287 288 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint
Source code in xdsl/irdl/constraints.py
290 291 292 293 294 295 296 297 298 | |
EqAttrConstraint
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Constrain an attribute to be equal to another attribute.
Source code in xdsl/irdl/constraints.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | |
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
308 309 310 311 312 313 314 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
316 317 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
319 320 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
322 323 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
325 326 327 328 | |
BaseAttr
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Constrain an attribute to be of a given base type.
Source code in xdsl/irdl/constraints.py
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 366 367 368 369 370 371 372 373 374 375 376 | |
attr: type[AttributeCovT]
instance-attribute
The expected attribute base type.
__init__(attr: type[AttributeCovT]) -> None
__repr__()
Source code in xdsl/irdl/constraints.py
338 339 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
356 357 358 359 360 361 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
363 364 365 366 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
368 369 370 371 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
373 374 375 376 | |
AnyOf
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Ensure that an attribute satisfies one of the given constraints.
Source code in xdsl/irdl/constraints.py
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 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 | |
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).
get(*attr_constrs: IRDLAttrConstraint[AttributeInvT]) -> AttrConstraint[AttributeInvT]
staticmethod
Source code in xdsl/irdl/constraints.py
398 399 400 401 402 403 404 405 406 407 408 409 | |
__init__(attr_constrs: tuple[AttrConstraint[AttributeCovT], ...])
Source code in xdsl/irdl/constraints.py
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 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
488 489 490 491 492 493 494 495 496 497 498 499 | |
__or__(value: AttrConstraint[_AttributeCovT]) -> AttrConstraint[AttributeCovT | _AttributeCovT]
Source code in xdsl/irdl/constraints.py
501 502 503 504 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
506 507 508 509 510 511 512 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
514 515 516 517 518 519 520 521 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
523 524 525 526 527 528 | |
AllOf
dataclass
Bases: AttrConstraint[AttributeCovT]
Ensure that an attribute satisfies all the given constraints.
Source code in xdsl/irdl/constraints.py
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 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 | |
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
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
558 559 560 561 562 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
564 565 566 567 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
569 570 571 572 573 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
575 576 577 578 579 580 581 582 583 584 585 | |
__and__(value: AttrConstraint) -> AllOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
587 588 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AllOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
590 591 592 593 594 595 | |
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
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 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 | |
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: tuple[AttrConstraint, ...]) -> None
get(base_attr: type[ParametrizedAttributeT], *param_constrs: IRDLAttrConstraint | None) -> AttrConstraint[ParametrizedAttributeT]
staticmethod
Source code in xdsl/irdl/constraints.py
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | |
__repr__()
Source code in xdsl/irdl/constraints.py
649 650 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
670 671 672 673 674 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
676 677 678 679 | |
infer(context: ConstraintContext) -> ParametrizedAttributeCovT
Source code in xdsl/irdl/constraints.py
681 682 683 684 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
686 687 688 689 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[ParametrizedAttributeCovT]
Source code in xdsl/irdl/constraints.py
691 692 693 694 695 696 697 | |
__or__(value: AttrConstraint[_AttributeCovT])
Source code in xdsl/irdl/constraints.py
699 700 701 702 703 704 705 706 707 708 709 710 711 712 | |
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
715 716 717 718 719 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 | |
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
725 726 727 728 729 730 731 732 733 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
735 736 737 738 739 740 741 742 743 744 745 746 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
748 749 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
751 752 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
754 755 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
757 758 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> MessageConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
760 761 762 763 764 765 | |
IntConstraint
dataclass
Bases: ABC
Constrain an integer to certain values.
Source code in xdsl/irdl/constraints.py
768 769 770 771 772 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 | |
__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
772 773 774 775 776 777 778 779 780 781 | |
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
783 784 785 786 787 788 | |
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
790 791 792 793 794 795 796 | |
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
798 799 800 801 802 803 804 805 806 | |
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
808 809 810 811 812 813 814 815 816 817 818 | |
AnyInt
dataclass
Bases: IntConstraint
Constraint that is verified by all integers.
Source code in xdsl/irdl/constraints.py
821 822 823 824 825 826 827 828 829 830 831 832 | |
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
826 827 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
829 830 831 832 | |
EqIntConstraint
dataclass
Bases: IntConstraint
Constrain an integer to a value.
Source code in xdsl/irdl/constraints.py
835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 | |
value: int
instance-attribute
__init__(value: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
841 842 843 844 845 846 847 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
849 850 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
852 853 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
855 856 857 858 | |
NotEqualIntConstraint
dataclass
Bases: IntConstraint
Constrain an integer to not be equal to a given value.
Source code in xdsl/irdl/constraints.py
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 | |
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
868 869 870 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
872 873 874 875 | |
IntSetConstraint
dataclass
Bases: IntConstraint
Constrain an integer to one of a set of integers.
Source code in xdsl/irdl/constraints.py
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 | |
values: frozenset[int]
instance-attribute
__init__(values: frozenset[int]) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
884 885 886 887 888 889 890 891 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
893 894 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
896 897 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
899 900 901 902 | |
AtLeast
dataclass
Bases: IntConstraint
Constrain an integer to be at least a given value.
Source code in xdsl/irdl/constraints.py
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 | |
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
912 913 914 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
916 917 918 919 | |
AtMost
dataclass
Bases: IntConstraint
Constrain an integer to be at most a given value.
Source code in xdsl/irdl/constraints.py
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 | |
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
929 930 931 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
933 934 935 936 | |
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
939 940 941 942 943 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 | |
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
952 953 954 955 956 957 958 959 960 961 962 963 964 965 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
967 968 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
970 971 972 973 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
975 976 977 978 979 980 981 982 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
984 985 986 987 988 989 | |
IntTypeVarConstraint
dataclass
Bases: IntConstraint
Stores the TypeVar instance used to define a generic type.
Source code in xdsl/irdl/constraints.py
992 993 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 | |
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
1004 1005 1006 1007 1008 1009 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
1011 1012 1013 1014 1015 1016 1017 1018 1019 | |
SizedConstraint
dataclass
Bases: AttrConstraint
Constraint the length of a sized attribute with an int constraint
Source code in xdsl/irdl/constraints.py
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 | |
len_constraint: IntConstraint
instance-attribute
__init__(len_constraint: IntConstraint) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1030 1031 1032 1033 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1035 1036 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint
Source code in xdsl/irdl/constraints.py
1038 1039 1040 1041 | |
RangeConstraint
dataclass
Bases: ABC, Generic[AttributeCovT]
Constrain a range of attributes to certain values.
Source code in xdsl/irdl/constraints.py
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 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 | |
__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
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 | |
verifies(attrs: Sequence[Attribute]) -> TypeGuard[AttributeCovT]
A helper method to check whether a given attribute matches self.
Source code in xdsl/irdl/constraints.py
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 | |
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
1072 1073 1074 1075 1076 1077 | |
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
1079 1080 1081 1082 1083 1084 | |
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
1086 1087 1088 1089 1090 1091 | |
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
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 | |
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
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 | |
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
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 | |
of_length(length_constr: int | TypeForm[int] | IntConstraint) -> RangeLengthConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1129 1130 1131 1132 1133 1134 1135 1136 | |
RangeLengthConstraint
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain an attribute range with the given length.
Source code in xdsl/irdl/constraints.py
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 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 | |
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
1151 1152 1153 1154 1155 1156 1157 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1159 1160 1161 1162 1163 1164 1165 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1167 1168 | |
variables_from_length() -> set[str]
Source code in xdsl/irdl/constraints.py
1170 1171 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1185 1186 1187 1188 1189 1190 1191 1192 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeLengthConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1194 1195 1196 1197 1198 1199 1200 | |
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
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 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 | |
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
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1232 1233 1234 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1236 1237 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1239 1240 1241 1242 1243 1244 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1246 1247 1248 1249 1250 1251 1252 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeVarConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1254 1255 1256 1257 1258 1259 | |
RangeOf
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain each element in a range to satisfy a given constraint.
Source code in xdsl/irdl/constraints.py
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
__init__(constr: IRDLAttrConstraint[AttributeCovT])
Source code in xdsl/irdl/constraints.py
1270 1271 1272 1273 | |
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1275 1276 1277 1278 1279 1280 1281 | |
verify_length(length: int, constraint_context: ConstraintContext)
Source code in xdsl/irdl/constraints.py
1283 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1285 1286 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1288 1289 1290 1291 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1303 1304 1305 1306 | |
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
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 | |
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
1317 1318 1319 1320 1321 1322 1323 1324 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1326 1327 1328 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1330 1331 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: int | None) -> bool
Source code in xdsl/irdl/constraints.py
1333 1334 1335 1336 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1338 1339 1340 1341 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> SingleOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1343 1344 1345 1346 | |