Matching
Utilities for comparing and partitioning named dimension tuples, including wildcard/ellipsis support.
torchlinops.nameddim.isequal
isequal(
shape1: Sequence,
shape2: Sequence,
return_assignments: bool = False,
) -> bool | tuple[bool, Optional[dict[int, list]]]
Test if two sequences with ellipses are length-compatible and value-compatible.
Implemented with bottom-up DP
| PARAMETER | DESCRIPTION |
|---|---|
shape1
|
The sequences of tokens to compare.
TYPE:
|
shape2
|
The sequences of tokens to compare.
TYPE:
|
ELLIPSES
|
The wildcard that can match any number of tokens.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
bool
|
Whether shape1 and shape2 are compatible. |
Examples:
>>> isequal(("A", "B"), ("A", "B"))
True
>>> isequal(("A", "C"), ("A",))
False
>>> isequal(("A", "C"), tuple())
False
>>> isequal(("A", "C"), ("...",))
True
>>> isequal(("A", "C", "..."), ("...",))
True
>>> isequal(("A", "B", "C"), ("A", "...", "C"))
True
>>> isequal(("...", "A", "C", "..."), ("...",))
True
>>> isequal(("...", "A", "C"), ("B", "C"))
False
Wildcards
Think about this one...
Source code in src/torchlinops/nameddim/_matching.py
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 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 | |
torchlinops.nameddim.iscompatible
iscompatible(
shape1: Sequence,
shape2: Sequence,
return_assignments: bool = False,
) -> bool | tuple[bool, Optional[dict]]
Whether the two shapes are length-compatible.
iscompatible(("A","B"), ("C", "D")) True iscompatible(("...",), ("A","B")) True iscompatible(("B","..."), ("A","...")) True iscompatible(("...",), tuple()) True
Source code in src/torchlinops/nameddim/_matching.py
torchlinops.nameddim.partition
Split a sequence on the first occurence of some value
Examples: