We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 037ff61 commit 179370eCopy full SHA for 179370e
mlir/test/lit.cfg.py
@@ -302,18 +302,16 @@ def find_real_python_interpreter():
302
]
303
)
304
elif "MLIR_GENERATE_PATTERN_CATALOG" in os.environ:
305
- tools.extend([
306
- ToolSubst(
307
- "mlir-opt",
308
- "mlir-opt --debug-only=generate-pattern-catalog --mlir-disable-threading",
309
- unresolved="fatal"
310
- ),
311
312
- "FileCheck",
313
- "FileCheck --dump-input=always",
314
315
316
- ])
+ tools.extend(
+ [
+ ToolSubst(
+ "mlir-opt",
+ "mlir-opt --debug-only=generate-pattern-catalog --mlir-disable-threading",
+ unresolved="fatal",
+ ),
+ ToolSubst("FileCheck", "FileCheck --dump-input=always", unresolved="fatal"),
+ ]
+ )
317
else:
318
tools.extend(["mlir-opt"])
319
0 commit comments