Parse pipeline
parse_pipeline
SpecToken: TypeAlias = Token[SpecTokenKind]
module-attribute
PassArgElementType = str | int | bool | float
module-attribute
PassArgListType = tuple[PassArgElementType, ...]
module-attribute
SpecTokenKind
Bases: Enum
Source code in xdsl/utils/parse_pipeline.py
14 15 16 17 18 19 20 21 22 23 24 25 | |
EOF = object()
class-attribute
instance-attribute
IDENT = object()
class-attribute
instance-attribute
L_BRACE = '{'
class-attribute
instance-attribute
R_BRACE = '}'
class-attribute
instance-attribute
EQUALS = '='
class-attribute
instance-attribute
NUMBER = object()
class-attribute
instance-attribute
SPACE = object()
class-attribute
instance-attribute
STRING_LIT = object()
class-attribute
instance-attribute
MLIR_PIPELINE = object()
class-attribute
instance-attribute
COMMA = ','
class-attribute
instance-attribute
PipelineLexer
This tokenizes a pass declaration string:
pipeline ::= pipeline-element (, pipeline-element)
pipeline-element ::= MLIR_PIPELINE
| pass-name options?
options ::= { options-element ( options-element) }
options-element ::= key (= value (, value)* )?
key ::= IDENT pass-name ::= IDENT value ::= NUMBER | BOOL | IDENT | STRING_LITERAL
Source code in xdsl/utils/parse_pipeline.py
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 | |
__init__(input_str: str)
Source code in xdsl/utils/parse_pipeline.py
66 67 68 | |
lex() -> SpecToken
Source code in xdsl/utils/parse_pipeline.py
97 98 99 100 | |
peek() -> SpecToken
Source code in xdsl/utils/parse_pipeline.py
102 103 104 105 | |
PipelinePassSpec
dataclass
A pass name and its arguments.
Source code in xdsl/utils/parse_pipeline.py
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 | |
name: str
instance-attribute
args: dict[str, PassArgListType]
instance-attribute
__init__(name: str, args: dict[str, PassArgListType]) -> None
normalize_arg_names() -> PipelinePassSpec
This normalized all arg names by replacing - with _
Source code in xdsl/utils/parse_pipeline.py
140 141 142 143 144 145 146 147 | |
__str__() -> str
This function returns a string containing the PipelineSpec name, its arguments and respective values for use on the commandline.
Source code in xdsl/utils/parse_pipeline.py
149 150 151 152 153 154 155 156 157 158 159 160 161 | |
parse_pipeline(pipeline_spec: str) -> Iterator[PipelinePassSpec]
This takes a pipeline string and gives a representation of the specification.
Each pass is represented by a tuple of
- name: the name of the pass as string
- args: a dictionary, where each value is zero or more of (str | bool | float | int)
Source code in xdsl/utils/parse_pipeline.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 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 | |